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
| package com.lunhan.xxx.common;
|
| import java.util.List;
|
| public class PagerResultMore<T, M> extends PagerResult<T> {
| /**
| * 其他信息
| */
| private M other;
|
| public M getOther() {
| return other;
| }
|
| public void setOther(M other) {
| this.other = other;
| }
|
| public PagerResultMore() {
| }
|
| public PagerResultMore(Integer limit, Integer page, Number total, List<T> list, M other) {
| super(limit, page, total, list);
| this.other = other;
| }
| }
|
|