1
zhang
2025-07-03 13ea8b334572c2423abb8d156fd8428f8d074172
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Task.java
@@ -96,6 +96,11 @@
     */
    @ApiModelProperty(value= "异常时间")
    private Date errTime;
    /**
     * 背篓
     */
    @ApiModelProperty(value= "背篓")
    private Integer back;
    /**
     * 起始站
@@ -400,8 +405,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 +423,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;
    }