feat:修改Entity基类报错

developVue
username 2 months ago
parent e6da27be93
commit a50ef28409

@ -63,6 +63,12 @@ public class BaseEntity implements Serializable {
*/ */
@TableField(fill = FieldFill.INSERT_UPDATE) @TableField(fill = FieldFill.INSERT_UPDATE)
private Date updateTime; private Date updateTime;
/**
*
*/
@TableField(fill = FieldFill.INSERT_UPDATE)
private String remark;
/** /**
* *
*/ */
@ -101,12 +107,12 @@ public class BaseEntity implements Serializable {
this.searchValue = searchValue; this.searchValue = searchValue;
} }
public String getCreateBy() public Long getCreateBy()
{ {
return createBy; return createBy;
} }
public void setCreateBy(String createBy) public void setCreateBy(Long createBy)
{ {
this.createBy = createBy; this.createBy = createBy;
} }
@ -121,12 +127,12 @@ public class BaseEntity implements Serializable {
this.createTime = createTime; this.createTime = createTime;
} }
public String getUpdateBy() public Long getUpdateBy()
{ {
return updateBy; return updateBy;
} }
public void setUpdateBy(String updateBy) public void setUpdateBy(Long updateBy)
{ {
this.updateBy = updateBy; this.updateBy = updateBy;
} }

Loading…
Cancel
Save