Van333
2022-10-26 f7debb464a2d49b6e66b014cf2beef2a9c4bf98d
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
46
47
48
49
50
51
52
53
54
package api.bean;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.Timer;
 
/**
 * @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;
//     定时任务接收
    private TimerRequest timerRequest;
 
    private Long[] streetlightIds;
 
    private Integer timerId;
    //  定时名称
    private String timerName;
    //  定时表达式
    private String timerExp;
    //    灯头序号
    private Integer lightNumber;
 
    private String deviceSerial;
    public String getApiKey() {
        return "84b5f9d6b37c47edb1adae628aaaf3e5";
    }
}