From f11edf2a41cd186ce46581f0b72ebccfc650674f Mon Sep 17 00:00:00 2001 From: zc <zc@123> Date: 星期四, 24 四月 2025 14:02:14 +0800 Subject: [PATCH] 初步调试 --- src/main/java/com/zy/asrs/domain/vo/LiftMsgTableVo.java | 71 ++++------------------------------- 1 files changed, 9 insertions(+), 62 deletions(-) diff --git a/src/main/java/com/zy/asrs/domain/vo/LiftMsgTableVo.java b/src/main/java/com/zy/asrs/domain/vo/LiftMsgTableVo.java index b09be1e..83dfef1 100644 --- a/src/main/java/com/zy/asrs/domain/vo/LiftMsgTableVo.java +++ b/src/main/java/com/zy/asrs/domain/vo/LiftMsgTableVo.java @@ -1,6 +1,9 @@ package com.zy.asrs.domain.vo; +import com.zy.core.model.protocol.LiftStaProtocol; import lombok.Data; + +import java.util.List; @Data public class LiftMsgTableVo { @@ -15,73 +18,17 @@ private String pakMk = "-"; /** - * 杈撻�佺嚎鍓嶇鍏夌數鏈夎揣 - * 鏈夎揣涓�1锛屾棤璐т负0锛堝墠绔寚闈犺繎璐ф灦渚э級 + * 绔欑偣淇℃伅 */ - private Boolean lineFrontHasStock; + private List<LiftStaProtocol> liftStaProtocols; /** - * 杈撻�佺嚎姝h浆鍙嶉 - * 姝h浆杩愯涓�1锛屽惁鍒欎负0 + * 绌挎杞﹀彿 */ - private Boolean forwardRotationFeedback; + private Integer shuttleNo; - /** - * 杈撻�佺嚎鍙嶈浆鍙嶉 - * 鍙嶈浆杩愯涓�1锛屽惁鍒欎负0 - */ - private Boolean reverseFeedback; + private Integer completeTaskNo; - /** - * 杈撻�佺嚎鐢垫満杩囪浇 - * 杩囪浇涓�0锛屾甯镐负1 - */ - private Boolean motorOverload; - - /** - * 杈撻�佺嚎鏈鍏夌數鏈夎揣 - * 鏈夎揣涓�1锛屾棤璐т负0 - */ - private Boolean lineEndHasStock; - - /** - * 杩涜緭閫佺嚎鍗℃墭鐩樻姤璀� - * 鎶ヨ涓�1锛屾湭鎶ヨ涓�0 - */ - private Boolean inConveyLineCardTrayAlarm; - - /** - * 鍑鸿緭閫佺嚎鍗℃墭鐩樻姤璀� - * 鎶ヨ涓�1锛屾湭鎶ヨ涓�0 - */ - private Boolean outConveyLineCardTrayAlarm; - - public String getLineFrontHasStock$() { - return this.lineFrontHasStock ? "Y" : "N"; - } - - public String getForwardRotationFeedback$() { - return this.forwardRotationFeedback ? "Y" : "N"; - } - - public String getReverseFeedback$() { - return this.reverseFeedback ? "Y" : "N"; - } - - public String getMotorOverload$() { - return this.motorOverload ? "Y" : "N"; - } - - public String getLineEndHasStock$() { - return this.lineEndHasStock ? "Y" : "N"; - } - - public String getInConveyLineCardTrayAlarm$() { - return this.inConveyLineCardTrayAlarm ? "Y" : "N"; - } - - public String getOutConveyLineCardTrayAlarm$() { - return this.outConveyLineCardTrayAlarm ? "Y" : "N"; - } + private Integer lev; } -- Gitblit v1.9.1