|
@@ -15,7 +15,6 @@ package vip.xiaonuo.common.pojo;
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
-import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
|
|
import com.fhs.core.trans.anno.Trans;
|
|
import com.fhs.core.trans.anno.Trans;
|
|
|
import com.fhs.core.trans.constant.TransType;
|
|
import com.fhs.core.trans.constant.TransType;
|
|
|
import com.fhs.core.trans.vo.TransPojo;
|
|
import com.fhs.core.trans.vo.TransPojo;
|
|
@@ -42,17 +41,17 @@ public class CommonEntity implements Serializable, TransPojo {
|
|
|
/** 删除标志 */
|
|
/** 删除标志 */
|
|
|
@TableLogic
|
|
@TableLogic
|
|
|
@ApiModelProperty(value = "删除标志", position = 999)
|
|
@ApiModelProperty(value = "删除标志", position = 999)
|
|
|
- @TableField(fill = FieldFill.INSERT)
|
|
|
|
|
|
|
+ @TableField(value="delete_flag",fill = FieldFill.INSERT)
|
|
|
private String deleteFlag;
|
|
private String deleteFlag;
|
|
|
|
|
|
|
|
/** 创建时间 */
|
|
/** 创建时间 */
|
|
|
@ApiModelProperty(value = "创建时间", position = 1000)
|
|
@ApiModelProperty(value = "创建时间", position = 1000)
|
|
|
- @TableField(fill = FieldFill.INSERT)
|
|
|
|
|
|
|
+ @TableField(value="create_time",fill = FieldFill.INSERT)
|
|
|
private Date createTime;
|
|
private Date createTime;
|
|
|
|
|
|
|
|
/** 创建人 */
|
|
/** 创建人 */
|
|
|
@ApiModelProperty(value = "创建人", position = 1001)
|
|
@ApiModelProperty(value = "创建人", position = 1001)
|
|
|
- @TableField(fill = FieldFill.INSERT)
|
|
|
|
|
|
|
+ @TableField(value="create_user",fill = FieldFill.INSERT)
|
|
|
@Trans(type = TransType.RPC, targetClassName = "vip.xiaonuo.sys.modular.user.entity.SysUser", fields = "name", alias = "createUser", ref = "createUserName", serviceName = "snowy-web-app")
|
|
@Trans(type = TransType.RPC, targetClassName = "vip.xiaonuo.sys.modular.user.entity.SysUser", fields = "name", alias = "createUser", ref = "createUserName", serviceName = "snowy-web-app")
|
|
|
private String createUser;
|
|
private String createUser;
|
|
|
|
|
|
|
@@ -63,12 +62,12 @@ public class CommonEntity implements Serializable, TransPojo {
|
|
|
|
|
|
|
|
/** 更新时间 */
|
|
/** 更新时间 */
|
|
|
@ApiModelProperty(value = "更新时间", position = 1003)
|
|
@ApiModelProperty(value = "更新时间", position = 1003)
|
|
|
- @TableField(fill = FieldFill.UPDATE)
|
|
|
|
|
|
|
+ @TableField(value="update_time",fill = FieldFill.UPDATE)
|
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
|
|
|
|
|
|
/** 更新人 */
|
|
/** 更新人 */
|
|
|
@ApiModelProperty(value = "更新人", position = 1004)
|
|
@ApiModelProperty(value = "更新人", position = 1004)
|
|
|
- @TableField(fill = FieldFill.UPDATE)
|
|
|
|
|
|
|
+ @TableField(value="update_user",fill = FieldFill.UPDATE)
|
|
|
@Trans(type = TransType.RPC, targetClassName = "vip.xiaonuo.sys.modular.user.entity.SysUser", fields = "name", alias = "updateUser", ref = "updateUserName", serviceName = "snowy-web-app")
|
|
@Trans(type = TransType.RPC, targetClassName = "vip.xiaonuo.sys.modular.user.entity.SysUser", fields = "name", alias = "updateUser", ref = "updateUserName", serviceName = "snowy-web-app")
|
|
|
private String updateUser;
|
|
private String updateUser;
|
|
|
|
|
|