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
package com.yanzuoguang.util.printer;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
/**
* 转换计划
*/
public class ConvertPlan<T> {
/**
* 来源模板
*/
@ApiModelProperty(notes = "来源模板", position = 10)
private String pager;
/**
* 来源数据
*/
@ApiModelProperty(notes = "来源数据", position = 10)
private List<T> datas = new ArrayList<>();
public String getPager() {
return pager;
}
public void setPager(String pager) {
this.pager = pager;
}
public List<T> getDatas() {
return datas;
}
public void setDatas(List<T> datas) {
this.datas = datas;
}
}