Browse Source

LotInfoFctAgvDTO添加注释

zhangxin 1 year ago
parent
commit
6caf7d73c6

+ 21 - 0
warewms-ams/src/main/java/com/ruoyi/ams/nieyan/dto/LotInfoFctAgvDTO.java

@@ -7,14 +7,29 @@ public class LotInfoFctAgvDTO {
 
 
     private String id;
     private String id;
 
 
+    /**
+     * 生产批号
+     */
     private String slot;
     private String slot;
 
 
+    /**
+     * 产品托盘号
+     */
     private String splt;
     private String splt;
 
 
+    /**
+     * 产品
+     */
     private String sprod;
     private String sprod;
 
 
+    /**
+     * 班组
+     */
     private String sshift;
     private String sshift;
 
 
+    /**
+     * 状态  0-未处理 1-AGV处理 2-人工处理
+     */
     private String status;
     private String status;
 
 
     /**
     /**
@@ -22,8 +37,14 @@ public class LotInfoFctAgvDTO {
      */
      */
     private String sprodType;
     private String sprodType;
 
 
+    /**
+     * 创建者
+     */
     private String createBy;
     private String createBy;
 
 
+    /**
+     * 创建时间
+     */
     private String createDate;
     private String createDate;
 
 
 }
 }