From 167c3df9b3a80e9a80db53a16b613a624c842686 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期二, 16 五月 2023 09:12:22 +0800
Subject: [PATCH] #

---
 src/main/java/com/zy/asrs/entity/ManLocDetl.java |   26 +++++++++++++++++++-------
 1 files changed, 19 insertions(+), 7 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/ManLocDetl.java b/src/main/java/com/zy/asrs/entity/ManLocDetl.java
index ce546a1..8ffca63 100644
--- a/src/main/java/com/zy/asrs/entity/ManLocDetl.java
+++ b/src/main/java/com/zy/asrs/entity/ManLocDetl.java
@@ -26,6 +26,14 @@
     private static final long serialVersionUID = 1L;
 
     /**
+     * uuid
+     */
+    @ApiModelProperty(value= "uuid")
+    @TableId(value = "uuid", type = IdType.ID_WORKER_STR)
+    @TableField("uuid")
+    private String uuid;
+
+    /**
      * 鎵�灞為」鐩�
      */
     @ApiModelProperty(value= "鎵�灞為」鐩�")
@@ -193,8 +201,8 @@
      * 淇敼鏃堕棿
      */
     @ApiModelProperty(value= "淇敼鏃堕棿")
-    @TableField("update_time")
-    private Date updateTime;
+    @TableField("modi_time")
+    private Date modiTime;
 
     /**
      * 澶囨敞
@@ -204,7 +212,7 @@
 
     public ManLocDetl() {}
 
-    public ManLocDetl(Long hostId, String locNo,Long nodeId,String zpallet,Double anfme,String matnr,String maktx,String name,String specs,String model,String batch,String unit,String barcode,Long docId,String docNum,String custName,Integer itemNum,Integer count,Double weight,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
+    public ManLocDetl(Long hostId, String locNo,Long nodeId,String zpallet,Double anfme,String matnr,String maktx,String name,String specs,String model,String batch,String unit,String barcode,Long docId,String docNum,String custName,Integer itemNum,Integer count,Double weight,Integer status,Long createBy,Date createTime,Long updateBy,Date modiTime,String memo,String uuid) {
         this.hostId = hostId;
         this.nodeId = nodeId;
         this.zpallet = zpallet;
@@ -226,8 +234,9 @@
         this.createBy = createBy;
         this.createTime = createTime;
         this.updateBy = updateBy;
-        this.updateTime = updateTime;
+        this.modiTime = modiTime;
         this.memo = memo;
+        this.uuid = uuid;
     }
 
 //    LocDetl locDetl = new LocDetl(
@@ -316,10 +325,13 @@
         return null;
     }
 
-    public String getUpdateTime$(){
-        if (Cools.isEmpty(this.updateTime)){
+    public String getModiTime$(){
+        if (Cools.isEmpty(this.modiTime)){
             return "";
         }
-        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime);
+        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.modiTime);
     }
+
+
+
 }

--
Gitblit v1.9.1