package com.vincent.rsf.server.common.domain.report;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class ReportQueryResponse<T> {
|
private List<T> records = new ArrayList<>();
|
private Long total = 0L;
|
private Long current = 1L;
|
private Long pageSize = 0L;
|
private Long pages = 0L;
|
|
public List<T> getRecords() {
|
return records;
|
}
|
|
public void setRecords(List<T> 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;
|
}
|
}
|