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 api.bean;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @program: wog
| * @description:
| * @author: YSS
| * @create: 2020-09-25 15:11
| **/
| @Data
| public class ReqParams implements Serializable {
|
| // token
| private String accessToken;
| // 当前页码
| private Integer page;
| // 当前页面条数
| private Integer limit;
|
| private Long lightId;
|
|
| private Long[] adIds;
|
| private String mac;
|
| private String apiKey;
| private Long userId;
| // 关键字
| private String key;
| // 控灯接收
| private PoleLightBatchEntity poleLightBatch;
|
| public String getApiKey() {
| return "84b5f9d6b37c47edb1adae628aaaf3e5";
| }
| }
|
|