自动化立体仓库 - WCS系统
Junjie
2023-04-14 9de7e9ef1f17b55278a21350d193934db158c2db
src/main/java/com/zy/asrs/domain/vo/LiftStateTableVo.java
@@ -162,70 +162,121 @@
    private Boolean pakMk = true;
    public String getLiftLock$() {
        if (this.liftLock == null) {
            return "N";
        }
        return this.liftLock ? "Y" : "N";
    }
    public String getReady$() {
        if (this.ready == null) {
            return "N";
        }
        return this.ready ? "Y" : "N";
    }
    public String getNotReady$() {
        if (this.notReady == null) {
            return "-";
        }
        return LiftNotReadyType.get((int) this.notReady).desc;
    }
    public String getRunning$() {
        if (this.running == null) {
            return "N";
        }
        return this.running ? "Y" : "N";
    }
    public String getMode$() {
        if (this.mode == null) {
            return "N";
        }
        return this.mode ? "Y" : "N";
    }
    public String getLineFrontHasStock$() {
        if (this.lineFrontHasStock == null) {
            return "N";
        }
        return this.lineFrontHasStock ? "Y" : "N";
    }
    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";
    }
    public String getPlatPositionDeviationAlarm$() {
        if (this.platPositionDeviationAlarm == null) {
            return "N";
        }
        return this.platPositionDeviationAlarm ? "Y" : "N";
    }
    public String getPlatTorqueDeviationAlarm$() {
        if (this.platTorqueDeviationAlarm == null) {
            return "N";
        }
        return this.platTorqueDeviationAlarm ? "Y" : "N";
    }
    public String getPlatShuttleCheck$() {
        if (this.platShuttleCheck == null) {
            return "N";
        }
        return this.platShuttleCheck ? "Y" : "N";
    }
    public String getPakMk$() {
        if (this.pakMk == null) {
            return "N";
        }
        return this.pakMk ? "Y" : "N";
    }
    public String getProtocolStatus$() {
        if (this.protocolStatus == null) {
            return LiftProtocolStatusType.OFFLINE.desc;
        }
        return LiftProtocolStatusType.get(this.protocolStatus).desc;
    }