From 715101e29ad1eb8d70f587237a37d74d50d3fd2a Mon Sep 17 00:00:00 2001 From: zc <zc@123> Date: 星期五, 25 四月 2025 15:23:28 +0800 Subject: [PATCH] 初步调试 --- src/main/java/com/zy/asrs/domain/vo/LiftMsgTableVo.java | 93 +++------------------------------------------- 1 files changed, 7 insertions(+), 86 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 b24c1c4..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,99 +18,17 @@ private String pakMk = "-"; /** - * 杈撻�佺嚎鍓嶇鍏夌數鏈夎揣 - * 鏈夎揣涓�1锛屾棤璐т负0锛堝墠绔寚闈犺繎璐ф灦渚э級 + * 绔欑偣淇℃伅 */ - private Boolean lineFrontHasStock; - - /** - * 杈撻�佺嚎姝h浆鍙嶉 - * 姝h浆杩愯涓�1锛屽惁鍒欎负0 - */ - private Boolean forwardRotationFeedback; - - /** - * 杈撻�佺嚎鍙嶈浆鍙嶉 - * 鍙嶈浆杩愯涓�1锛屽惁鍒欎负0 - */ - private Boolean reverseFeedback; - - /** - * 杈撻�佺嚎鐢垫満杩囪浇 - * 杩囪浇涓�0锛屾甯镐负1 - */ - private Boolean motorOverload; - - /** - * 杈撻�佺嚎鏈鍏夌數鏈夎揣 - * 鏈夎揣涓�1锛屾棤璐т负0 - */ - private Boolean lineEndHasStock; - - /** - * 杩涜緭閫佺嚎鍗℃墭鐩樻姤璀� - * 鎶ヨ涓�1锛屾湭鎶ヨ涓�0 - */ - private Boolean inConveyLineCardTrayAlarm; - - /** - * 鍑鸿緭閫佺嚎鍗℃墭鐩樻姤璀� - * 鎶ヨ涓�1锛屾湭鎶ヨ涓�0 - */ - private Boolean outConveyLineCardTrayAlarm; + private List<LiftStaProtocol> liftStaProtocols; /** * 绌挎杞﹀彿 */ private Integer shuttleNo; - public String getLineFrontHasStock$() { - if (this.lineFrontHasStock == null) { - return "N"; - } - return this.lineFrontHasStock ? "Y" : "N"; - } + private Integer completeTaskNo; - public String getForwardRotationFeedback$() { - if (this.forwardRotationFeedback == null) { - return "N"; - } - return this.forwardRotationFeedback ? "Y" : "N"; - } - - public String getReverseFeedback$() { - if (this.reverseFeedback == null) { - return "N"; - } - return this.reverseFeedback ? "Y" : "N"; - } - - public String getMotorOverload$() { - if (this.motorOverload == null) { - return "N"; - } - return this.motorOverload ? "Y" : "N"; - } - - public String getLineEndHasStock$() { - if (this.lineEndHasStock == null) { - return "N"; - } - return this.lineEndHasStock ? "Y" : "N"; - } - - public String getInConveyLineCardTrayAlarm$() { - if (this.inConveyLineCardTrayAlarm == null) { - return "N"; - } - return this.inConveyLineCardTrayAlarm ? "Y" : "N"; - } - - public String getOutConveyLineCardTrayAlarm$() { - if (this.outConveyLineCardTrayAlarm == null) { - return "N"; - } - return this.outConveyLineCardTrayAlarm ? "Y" : "N"; - } + private Integer lev; } -- Gitblit v1.9.1