From 431e937773ca692190e94b326bd4c4201154f661 Mon Sep 17 00:00:00 2001
From: zhoushihao <zsh19950802@163.com>
Date: 星期三, 23 十月 2024 08:58:53 +0800
Subject: [PATCH] 1、解决请求入库失败后,状态恢复问题

---
 hangzhoumesParent/moduleService/GlassStorageModule/src/main/java/com/mes/rawglassdetails/entity/RawGlassStorageDetails.java |   31 ++++++++++++++++---------------
 1 files changed, 16 insertions(+), 15 deletions(-)

diff --git a/hangzhoumesParent/moduleService/GlassStorageModule/src/main/java/com/mes/rawglassdetails/entity/RawGlassStorageDetails.java b/hangzhoumesParent/moduleService/GlassStorageModule/src/main/java/com/mes/rawglassdetails/entity/RawGlassStorageDetails.java
index 888b6bb..62fe8b6 100644
--- a/hangzhoumesParent/moduleService/GlassStorageModule/src/main/java/com/mes/rawglassdetails/entity/RawGlassStorageDetails.java
+++ b/hangzhoumesParent/moduleService/GlassStorageModule/src/main/java/com/mes/rawglassdetails/entity/RawGlassStorageDetails.java
@@ -2,14 +2,15 @@
 
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
-import java.time.LocalDateTime;
-import java.io.Serializable;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
 
+import java.io.Serializable;
+import java.util.Date;
+
 /**
  * <p>
- * 
+ *
  * </p>
  *
  * @author wf
@@ -21,48 +22,48 @@
 
     private static final long serialVersionUID = 1L;
 
-      @TableId(value = "id", type = IdType.AUTO)
+    @TableId(value = "id", type = IdType.AUTO)
     private Long id;
-
     /**
      * 璁惧id
      */
     private Integer deviceId;
-
     /**
      * 鏍煎瓙id
      */
-    private String slotId;
-
+    private Integer slot;
+    /**
+     * 鏋跺瓙淇℃伅
+     */
+    private Integer shelf;
     /**
      * 鍘熺墖瀹�
      */
     private Double patternWidth;
-
     /**
      * 鍘熺墖楂�
      */
     private Double patternHeight;
-
     /**
      * 鍘熺墖鍘氬害
      */
     private Double patternThickness;
-
     /**
      * 鑶滅郴
      */
     private String filmsId;
-
     /**
      * 鍒涘缓鏃堕棿
      */
-    private LocalDateTime createTime;
-
+    private Date createTime;
     /**
      * 鍓╀綑鏁伴噺
      */
-    private String remainQuantity;
+    private Integer remainQuantity;
+    /**
+     * 鐘舵��
+     */
+    private Integer state;
 
 
 }

--
Gitblit v1.8.0