1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.xzx.gc.model.admin;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.List;
|
| /**
| * 推广员实体
| */
| @Data
| public class EchartParamModel implements Serializable {
|
| private static final long serialVersionUID = -7649254093431914359L;
|
| int page;
|
| int limit;
| }
|
|