package com.fgkj.dto;
|
|
import java.io.Serializable;
|
import java.util.Arrays;
|
|
public class DLG_Progress implements Serializable{
|
private boolean judge=false; //进程是否结束
|
private Integer Completedcount; //完成数目
|
private Integer uploadOkcount; //成功上传的文件个数
|
private Integer total; //总数目
|
private boolean isCompleteed=false; //是否上传结束
|
private String[][] tableData; //多个文件上传时多条数据进度
|
|
public DLG_Progress() {
|
}
|
|
public DLG_Progress(boolean judge,boolean isCompleteed) {
|
this.judge=judge;
|
this.isCompleteed=isCompleteed;
|
this.uploadOkcount=0;
|
|
}
|
|
@Override
|
protected Object clone() throws CloneNotSupportedException {
|
// TODO Auto-generated method stub
|
return super.clone();
|
}
|
|
public boolean isJudge() {
|
return judge;
|
}
|
public void setJudge(boolean judge) {
|
this.judge = judge;
|
}
|
|
public Integer getCompletedcount() {
|
return Completedcount;
|
}
|
|
public void setCompletedcount(Integer completedcount) {
|
Completedcount = completedcount;
|
}
|
|
public Integer getUploadOkcount() {
|
return uploadOkcount;
|
}
|
|
public void setUploadOkcount(Integer uploadOkcount) {
|
this.uploadOkcount = uploadOkcount;
|
}
|
|
public Integer getTotal() {
|
return total;
|
}
|
|
public void setTotal(Integer total) {
|
this.total = total;
|
}
|
|
public boolean isCompleteed() {
|
return isCompleteed;
|
}
|
public void setCompleteed(boolean isCompleteed) {
|
this.isCompleteed = isCompleteed;
|
}
|
public String[][] getTableData() {
|
return tableData;
|
}
|
public void setTableData(String[][] tableData) {
|
this.tableData = tableData;
|
}
|
|
@Override
|
public String toString() {
|
return "DLG_Progress [judge=" + judge + ", Completedcount="
|
+ Completedcount + ", total=" + total + ", isCompleteed="
|
+ isCompleteed + ", tableData=" + Arrays.toString(tableData)
|
+ "]";
|
}
|
}
|