#
vincentlu
2025-05-13 ebd2f4397a92c6a5096de1b86d59154363344720
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Task.java
@@ -116,6 +116,12 @@
    private Long oriCode;
    /**
     * 起始巷道哈希
     */
    @ApiModelProperty(value= "起始巷道哈希")
    private String oriLaneHash;
    /**
     * 目标站
     */
    @ApiModelProperty(value= "目标站")
@@ -132,6 +138,12 @@
     */
    @ApiModelProperty(value= "目标码")
    private Long destCode;
    /**
     * 目标巷道哈希
     */
    @ApiModelProperty(value= "目标巷道哈希")
    private String destLaneHash;
    /**
     * 空板
@@ -388,8 +400,12 @@
        if (null != this.oriLoc) {
            oriDesc = "LOC" + " - " + this.getOriLoc$();
        }
        if (!Cools.isEmpty(oriDesc) && null != this.oriCode) {
            oriDesc = oriDesc + " (" + this.getOriCode$() + ")";
        if (!Cools.isEmpty(oriDesc)) {
            if (null != this.oriCode) {
                oriDesc = oriDesc + " (" + this.getOriCode$() + ")";
            }
        } else {
            oriDesc = "CODE" + " - " + this.getOriCode$();
        }
        return oriDesc;
    }
@@ -402,8 +418,12 @@
        if (null != this.destLoc) {
            destDesc = "LOC" + " - " + this.getDestLoc$();
        }
        if (!Cools.isEmpty(destDesc) && null != this.destCode) {
            destDesc = destDesc + " (" + this.getDestCode$() + ")";
        if (!Cools.isEmpty(destDesc)) {
            if (null != this.destCode) {
                destDesc = destDesc + " (" + this.getDestCode$() + ")";
            }
        } else {
            destDesc = "CODE" + " - " + this.getDestCode$();
        }
        return destDesc;
    }