From a50ef28409c1fbaa457220e92e3a9f6eecb3db85 Mon Sep 17 00:00:00 2001 From: username <1532322479@qq.com> Date: Sun, 23 Feb 2025 11:02:53 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E4=BF=AE=E6=94=B9Entity=E5=9F=BA?= =?UTF-8?q?=E7=B1=BB=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/bs/common/core/domain/BaseEntity.java | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/bs-common/src/main/java/com/bs/common/core/domain/BaseEntity.java b/bs-common/src/main/java/com/bs/common/core/domain/BaseEntity.java index a0b97eb..3c24f3f 100644 --- a/bs-common/src/main/java/com/bs/common/core/domain/BaseEntity.java +++ b/bs-common/src/main/java/com/bs/common/core/domain/BaseEntity.java @@ -63,6 +63,12 @@ public class BaseEntity implements Serializable { */ @TableField(fill = FieldFill.INSERT_UPDATE) private Date updateTime; + + /** + * 更新时间 + */ + @TableField(fill = FieldFill.INSERT_UPDATE) + private String remark; /** * 逻辑删除标示 */ @@ -101,12 +107,12 @@ public class BaseEntity implements Serializable { this.searchValue = searchValue; } - public String getCreateBy() + public Long getCreateBy() { return createBy; } - public void setCreateBy(String createBy) + public void setCreateBy(Long createBy) { this.createBy = createBy; } @@ -121,12 +127,12 @@ public class BaseEntity implements Serializable { this.createTime = createTime; } - public String getUpdateBy() + public Long getUpdateBy() { return updateBy; } - public void setUpdateBy(String updateBy) + public void setUpdateBy(Long updateBy) { this.updateBy = updateBy; }