1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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)
                + "]";
    }    
}