whycrzh
2021-01-26 2da88e0ad99dce340f0d25bff5b50fa629bcce15
src/main/java/com/fgkj/dto/DLG_Progress.java
@@ -7,7 +7,7 @@
@Alias("DLG_Progress")
public class DLG_Progress implements Serializable{
   private boolean judge=false;            //进程是否结束
   private Integer  Completedcount;         //完成数目
   private Integer  completedcount;         //完成数目
   private Integer uploadOkcount;            //成功上传的文件个数
   private Integer total;                  //总数目
   private boolean isCompleteed=false;         //是否上传结束
@@ -35,13 +35,13 @@
   public void setJudge(boolean judge) {
      this.judge = judge;
   }
   public Integer getCompletedcount() {
      return Completedcount;
      return completedcount;
   }
   public void setCompletedcount(Integer completedcount) {
      Completedcount = completedcount;
      this.completedcount = completedcount;
   }
   public Integer getUploadOkcount() {
@@ -75,9 +75,13 @@
   @Override
   public String toString() {
      return "DLG_Progress [judge=" + judge + ", Completedcount="
            + Completedcount + ", total=" + total + ", isCompleteed="
            + isCompleteed + ", tableData=" + Arrays.toString(tableData)
            + "]";
   }
      return "DLG_Progress{" +
            "judge=" + judge +
            ", completedcount=" + completedcount +
            ", uploadOkcount=" + uploadOkcount +
            ", total=" + total +
            ", isCompleteed=" + isCompleteed +
            ", tableData=" + Arrays.toString(tableData) +
            '}';
   }
}