zhou zhou
5 小时以前 6e5ff559023efd2d24fdca2adcb7268d06420e46
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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;
    }
}