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
| package com.genersoft.iot.vmp.common;
|
|
| import java.util.List;
|
| public class PageResult<T> {
|
| private int page;
| private int count;
| private int total;
|
| private List<T> data;
|
| public List<T> getData() {
| return data;
| }
|
| public int getPage() {
| return page;
| }
|
| public void setPage(int page) {
| this.page = page;
| }
|
| public int getCount() {
| return count;
| }
|
| public void setCount(int count) {
| this.count = count;
| }
|
| public int getTotal() {
| return total;
| }
|
| public void setTotal(int total) {
| this.total = total;
| }
|
| public void setData(List<T> data) {
| this.data = data;
| }
| }
|
|