cpT
2025-06-30 5aa831dffdfb0ca524362e8d649c28babc681ece
src/main/java/com/zy/core/model/command/CrnCommand.java
@@ -16,6 +16,7 @@
    // 堆垛机号
    private Integer crnNo = 0;
    private Integer laneNo = 0;
    // 任务完成确认位
    private Short ackFinish = 0;
@@ -82,6 +83,7 @@
    private Short onlineWrk3 = 0;
    //恢复联机任务
    private Short onlineWrk4 = 0;
    private  Short reset = 0;
    // 任务确认 0:未确认 1:已确认
    private Short command = 0;
@@ -121,4 +123,13 @@
        System.out.println("礼拜");
        System.out.println(mm);
    }
    public String getNowTask() {
        String souLoc = this.getSourcePosX() + "排" + this.getSourcePosY() + "列" + this.getSourcePosZ() + "层";
        String endLoc = this.getDestinationPosX() + "排" + this.getDestinationPosY() + "列" + this.getDestinationPosY() + "层";
        return "任务号:"+this.taskNo+";起点:"+souLoc+";终点:"+endLoc+";模式:"+this.taskModeType.name();
    }
}