From d86eb1be7c042cbb74e470e426811c2ac7af3a2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=9D=E5=85=88=E7=91=9E?= <1490493387@qq.com> Date: Sun, 3 Jul 2022 14:33:47 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E6=97=B6=E9=97=B4=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=90=8D=E5=8F=98=E6=9B=B4=E5=AE=9E=E4=BD=93=E7=B1=BB?= =?UTF-8?q?=E5=90=8C=E6=AD=A5=E6=9B=B4=E6=96=B0gmt=5Fcreate=E2=86=92create?= =?UTF-8?q?=5Ftime,gmt=5Fmodified=E2=86=92update=5Ftime?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/youlai/common/base/BaseEntity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youlai-common/common-core/src/main/java/com/youlai/common/base/BaseEntity.java b/youlai-common/common-core/src/main/java/com/youlai/common/base/BaseEntity.java index c5f57a9c2..16e821004 100644 --- a/youlai-common/common-core/src/main/java/com/youlai/common/base/BaseEntity.java +++ b/youlai-common/common-core/src/main/java/com/youlai/common/base/BaseEntity.java @@ -14,10 +14,10 @@ public class BaseEntity implements Serializable { @TableField(fill = FieldFill.INSERT) @JsonInclude(value = JsonInclude.Include.NON_NULL) @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") - private LocalDateTime gmtCreate; + private LocalDateTime createTime; @TableField(fill = FieldFill.INSERT_UPDATE) @JsonInclude(value = JsonInclude.Include.NON_NULL) @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") - private LocalDateTime gmtModified; + private LocalDateTime updateTime; }