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
| package api.bean;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @author van
| * @version 1.0
| * msg:
| * @date 2022/6/6 14:37
| */
| @Data
| public class PoleLightBatchEntity implements Serializable {
|
| private static final long serialVersionUID = 1L;
|
| private Long[] streetlightIds;
|
| private Integer operate;
|
| private Long programId;
|
| private Integer scheduleId;
|
| private Integer lightLevel;
|
| private Integer lightNumber;
|
| private Long[] adIds;
| }
|
|