liurunyu
2024-11-18 828c1d825308f465c0aa1ea7b94b34c49ccac1d9
pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/softUpgrade/state/UpgradeState.java
@@ -19,6 +19,8 @@
    public int failTotal ;//所有失败
    public int failOneTotal ;//所有一包死失败
    public Boolean allOver ;//所有都结束(true:是,false:否)
    public UpgradeState() {
        this.init();
    }
@@ -31,6 +33,8 @@
        this.overTotal = 0;
        this.successTotal = 0;
        this.failTotal = 0;
        this.failOneTotal = 0;
        this.allOver = false ;
    }
    public String toString(){
@@ -44,6 +48,7 @@
        sb.append("    \n成功总数:" + successTotal) ;
        sb.append("    \n失败总数:" + failTotal) ;
        sb.append("    \n1包死总数:" + failOneTotal) ;
        sb.append("    \n全结束:" + allOver) ;
        return sb.toString() ;
    }