package pwc.taxtech.atms.dto.datainit;

public class DataCountDto {

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


    /**
     *
     */
    public DataCountDto() {
        super();
    }


    /**
     * @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;
    }

    /**
     * @param dtCount the dtCount to set
     */
    public void setDtCount(Integer dtCount) {
        this.dtCount = dtCount;
    }

    /**
     * @return the oldCount
     */
    public Long getOldCount() {
        return oldCount;
    }

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

    /**
     * @return the newCount
     */
    public Long getNewCount() {
        return newCount;
    }

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

    /**
     * @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;
    }

    /**
     * @param tableName the tableName to set
     */
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }


}