自动化立体仓库 - WCS系统
#
luxiaotao1123
2022-09-21 91eb4e46c6064e5930685a9af2d5ca22d95ae944
src/main/java/com/zy/core/model/protocol/SteProtocol.java
@@ -1,5 +1,6 @@
package com.zy.core.model.protocol;
import com.core.common.Cools;
import com.zy.asrs.entity.BasSte;
import com.zy.core.enums.SteHisTaskStatusType;
import com.zy.core.enums.SteLocaType;
@@ -36,7 +37,7 @@
    /**
     * 任务号
     */
    public Integer taskNo = 0;
    public Short taskNo = 0;
    /**
     * 正在执行任务
@@ -223,7 +224,16 @@
        if (alarm!=null) {
            basSte.setSteErr(alarm.longValue());
        }
        basSte.setWrkNo(taskNo);
        basSte.setWrkNo(taskNo.intValue());
        if (!Cools.isEmpty(row)) {
            basSte.setRow(row.intValue());
        }
        if (!Cools.isEmpty(bay)) {
            basSte.setBay(bay.intValue());
        }
        if (!Cools.isEmpty(lev)) {
            basSte.setLev(lev.intValue());
        }
        return basSte;
    }
@@ -236,7 +246,7 @@
    // 是否处于报警状态
    public Boolean isAlarm() {
        return this.alarm > 0;
        return this.alarm > 1;
    }
}