package com.vincent.rsf.server.common.domain.report; import java.util.ArrayList; import java.util.List; public class ReportQueryResponse { private List records = new ArrayList<>(); private Long total = 0L; private Long current = 1L; private Long pageSize = 0L; private Long pages = 0L; public List getRecords() { return records; } public void setRecords(List records) { this.records = records; } public Long getTotal() { return total; } public void setTotal(Long total) { this.total = total; } public Long getCurrent() { return current; } public void setCurrent(Long current) { this.current = current; } public Long getPageSize() { return pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getPages() { return pages; } public void setPages(Long pages) { this.pages = pages; } }