#
luxiaotao1123
2024-11-19 2ad4545ad7246562abc0a5e706a0c61469691908
#
1个文件已修改
12 ■■■■■ 已修改文件
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Task.java 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Task.java
@@ -400,8 +400,10 @@
        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$();
        }
@@ -416,8 +418,10 @@
        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$();
        }