其他分享
首页 > 其他分享> > @TableField(exist=false)注解

@TableField(exist=false)注解

作者:互联网

@TableField(exist=false)注解加在bean属性上,表示当前属性不是数据库的字段,但在项目中必须使用。

@ApiModelProperty(position = 12, value = "注销时间")
private LocalDateTime zxsj;

/**
 * 开始时间
 */

@TableField(exist = false)
@ApiModelProperty(position = 13, value = "开始时间")
private LocalDateTime kssj;

/**
 * 结束时间
 */
@TableField(exist = false)
@ApiModelProperty(position = 14, value = "结束时间")
private LocalDateTime jssj;

*[@ApiModelProperty注解表示对model属性的说明或者是数据操作,属性position:排序;value:字段说明]

https://blog.csdn.net/weixin_43468680/article/details/101456989

 

标签:TableField,false,value,ApiModelProperty,exist,position
来源: https://www.cnblogs.com/tszr/p/16147360.html