package pwc.taxtech.atms.dpo; public class PagingDto { private Integer TotalCount; private Integer PageIndex; private Integer PageSize; public Integer getTotalCount() { return TotalCount; } public void setTotalCount(Integer totalCount) { this.TotalCount = totalCount; } public Integer getPageIndex() { return PageIndex; } public void setPageIndex(Integer pageIndex) { this.PageIndex = pageIndex; } public Integer getPageSize() { return PageSize; } public void setPageSize(Integer pageSize) { this.PageSize = pageSize; } }