DataCountDto.java 1.96 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9
package pwc.taxtech.atms.dto.datainit;

public class DataCountDto {

    private Integer dtCount;
    private Long oldCount;
    private Long newCount;
    private Long errorCount;
    private String tableName;
10 11


eddie.woo's avatar
eddie.woo committed
12
    /**
13
     *
eddie.woo's avatar
eddie.woo committed
14 15 16 17
     */
    public DataCountDto() {
        super();
    }
18 19


eddie.woo's avatar
eddie.woo committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    /**
     * @param dtCount
     * @param oldCount
     * @param newCount
     * @param tableName
     */
    public DataCountDto(Integer dtCount, Long oldCount, Long newCount, Long errorCount, String tableName) {
        super();
        this.dtCount = dtCount;
        this.oldCount = oldCount;
        this.newCount = newCount;
        this.errorCount = errorCount;
        this.tableName = tableName;
    }


    /**
     * @return the dtCount
     */
    public Integer getDtCount() {
        return dtCount;
    }
42

eddie.woo's avatar
eddie.woo committed
43 44 45 46 47 48
    /**
     * @param dtCount the dtCount to set
     */
    public void setDtCount(Integer dtCount) {
        this.dtCount = dtCount;
    }
49

eddie.woo's avatar
eddie.woo committed
50 51 52 53 54 55
    /**
     * @return the oldCount
     */
    public Long getOldCount() {
        return oldCount;
    }
56

eddie.woo's avatar
eddie.woo committed
57 58 59 60 61 62
    /**
     * @param oldCount the oldCount to set
     */
    public void setOldCount(Long oldCount) {
        this.oldCount = oldCount;
    }
63

eddie.woo's avatar
eddie.woo committed
64 65 66 67 68 69
    /**
     * @return the newCount
     */
    public Long getNewCount() {
        return newCount;
    }
70

eddie.woo's avatar
eddie.woo committed
71 72 73 74 75 76
    /**
     * @param newCount the newCount to set
     */
    public void setNewCount(Long newCount) {
        this.newCount = newCount;
    }
77

eddie.woo's avatar
eddie.woo committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
    /**
     * @return the errorCount
     */
    public Long getErrorCount() {
        return errorCount;
    }


    /**
     * @param errorCount the errorCount to set
     */
    public void setErrorCount(Long errorCount) {
        this.errorCount = errorCount;
    }


    /**
     * @return the tableName
     */
    public String getTableName() {
        return tableName;
    }
100

eddie.woo's avatar
eddie.woo committed
101 102 103 104 105 106
    /**
     * @param tableName the tableName to set
     */
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
107 108


eddie.woo's avatar
eddie.woo committed
109
}