From d0cdab02bf21cd1970d05dd4f4e50e2576d60d90 Mon Sep 17 00:00:00 2001 From: Tomato_Simon <1499602163@qq.com> Date: Sat, 18 Sep 2021 06:33:01 +0000 Subject: [PATCH 1/3] =?UTF-8?q?=E9=87=8D=E5=91=BD=E5=90=8D=20HotelIntellig?= =?UTF-8?q?enceSystem(rear-front)=20=E4=B8=BA=20HotelIntelligenceSystem(fr?= =?UTF-8?q?ont-end)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../.keep | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {HotelIntelligenceSystem(rear-front) => HotelIntelligenceSystem(front-end)}/.keep (100%) diff --git a/HotelIntelligenceSystem(rear-front)/.keep b/HotelIntelligenceSystem(front-end)/.keep similarity index 100% rename from HotelIntelligenceSystem(rear-front)/.keep rename to HotelIntelligenceSystem(front-end)/.keep -- Gitee From 7ba9908601a6463045fa3dbee9d74cf617beef19 Mon Sep 17 00:00:00 2001 From: Tomato-Simon <1499602163@qq.com> Date: Sat, 18 Sep 2021 22:39:32 +0800 Subject: [PATCH 2/3] =?UTF-8?q?refactor:=20=E9=87=8D=E6=9E=84PO=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=A1=AB=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/dept/model/po/DeptPO.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/HotelIntelligenceSystem(rear-end)/src/main/java/group/oneonetwo/hotelintelligencesystem/modules/dept/model/po/DeptPO.java b/HotelIntelligenceSystem(rear-end)/src/main/java/group/oneonetwo/hotelintelligencesystem/modules/dept/model/po/DeptPO.java index cf7864f..e2220a5 100644 --- a/HotelIntelligenceSystem(rear-end)/src/main/java/group/oneonetwo/hotelintelligencesystem/modules/dept/model/po/DeptPO.java +++ b/HotelIntelligenceSystem(rear-end)/src/main/java/group/oneonetwo/hotelintelligencesystem/modules/dept/model/po/DeptPO.java @@ -32,16 +32,16 @@ public class DeptPO implements Serializable { @TableField("is_deleted") private Integer isDeleted; - @TableField("create_by") + // @TableField(fill = FieldFill.INSERT) private String createdBy; - @TableField("create_time") + @TableField(fill = FieldFill.INSERT) private Date createTime; - @TableField("update_by") + @TableField(fill = FieldFill.UPDATE) private String updateBy; - @TableField("update_time") + @TableField(fill = FieldFill.UPDATE) private Date updateTime; public String getId() { -- Gitee From 8152d5332b8ec6c13876c2bddc0fd80a00942196 Mon Sep 17 00:00:00 2001 From: Tomato-Simon <1499602163@qq.com> Date: Sat, 18 Sep 2021 22:57:57 +0800 Subject: [PATCH 3/3] =?UTF-8?q?refactor:=20=E9=87=8D=E6=9E=84PO=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=A1=AB=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hotelintelligencesystem/modules/dept/model/po/DeptPO.java | 1 + 1 file changed, 1 insertion(+) diff --git a/HotelIntelligenceSystem(rear-end)/src/main/java/group/oneonetwo/hotelintelligencesystem/modules/dept/model/po/DeptPO.java b/HotelIntelligenceSystem(rear-end)/src/main/java/group/oneonetwo/hotelintelligencesystem/modules/dept/model/po/DeptPO.java index e2220a5..244a8cd 100644 --- a/HotelIntelligenceSystem(rear-end)/src/main/java/group/oneonetwo/hotelintelligencesystem/modules/dept/model/po/DeptPO.java +++ b/HotelIntelligenceSystem(rear-end)/src/main/java/group/oneonetwo/hotelintelligencesystem/modules/dept/model/po/DeptPO.java @@ -1,5 +1,6 @@ package group.oneonetwo.hotelintelligencesystem.modules.dept.model.po; +import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; -- Gitee