| | |
| | | @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; //是否上传结束 |
| | |
| | | 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() { |
| | |
| | | |
| | | @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) + |
| | | '}'; |
| | | } |
| | | } |