From a3c6d5f48169f63d07076b852cd2336b5b7aa9d1 Mon Sep 17 00:00:00 2001 From: whycq <10027870+whycq@user.noreply.gitee.com> Date: 星期一, 24 四月 2023 08:05:41 +0800 Subject: [PATCH] # --- src/main/java/com/zy/core/model/DevpSlave.java | 23 +++++++++++++++++++++-- 1 files changed, 21 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..923ef10 100644 --- a/src/main/java/com/zy/core/model/DevpSlave.java +++ b/src/main/java/com/zy/core/model/DevpSlave.java @@ -8,21 +8,40 @@ 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 barcode1; + + private Integer barcode2; + + private Integer backSta; + + private Integer led; + } } -- Gitblit v1.9.1