zhang
2025-05-20 1313906bb1eb983d3beece810035e7fc28d6a92f
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Task.java
@@ -119,7 +119,7 @@
     * 起始巷道哈希
     */
    @ApiModelProperty(value= "起始巷道哈希")
    private Long oriLaneHash;
    private String oriLaneHash;
    /**
     * 目标站
@@ -143,7 +143,7 @@
     * 目标巷道哈希
     */
    @ApiModelProperty(value= "目标巷道哈希")
    private Long destLaneHash;
    private String destLaneHash;
    /**
     * 空板
@@ -400,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;
    }
@@ -414,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;
    }