From ca8f5a8f133e7f5b00b9d35ff6d15720804569af Mon Sep 17 00:00:00 2001
From: zyx <zyx123456>
Date: 星期三, 31 一月 2024 10:15:32 +0800
Subject: [PATCH] Merge branch 'ryzhwcs' of http://47.97.1.152:5880/r/zy-wcs into ryzhwcs

---
 src/main/java/com/zy/core/model/DevpSlave.java |   18 ++++++++++++++++--
 1 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/zy/core/model/DevpSlave.java b/src/main/java/com/zy/core/model/DevpSlave.java
index 6b0b563..799cab2 100644
--- a/src/main/java/com/zy/core/model/DevpSlave.java
+++ b/src/main/java/com/zy/core/model/DevpSlave.java
@@ -8,21 +8,35 @@
 import java.util.List;
 
 /**
+ * 杈撻�佺嚎閰嶇疆
  * Created by vincent on 2020/8/6
  */
 @EqualsAndHashCode(callSuper = true)
 @Data
 public class DevpSlave extends Slave {
 
-    private List<InSta> inSta = new ArrayList<>();
+    private Integer rack;
+
+    private Integer slot;
+
+    private List<Sta> inSta = new ArrayList<>();
+
+    private List<Sta> emptyInSta = new ArrayList<>();
+
+    private List<Sta> outSta = new ArrayList<>();
+
+    private List<Sta> pickSta = new ArrayList<>();
 
     @Data
-    public static class InSta {
+    public static class Sta {
 
         private Integer staNo;
 
         private Integer barcode;
 
+        private Integer scale;
+
+        private Integer backSta;
     }
 
 }

--
Gitblit v1.9.1