cjl
2025-01-06 8490eb11583ffdc586436f165860de5cfc39f915
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.moral.api.pojo.vo.monitorPoint;
 
import lombok.Data;
 
import java.util.List;
 
import com.moral.api.pojo.vo.device.DeviceVO;
 
/**
 * Description //todo
 *
 * @author swb
 * @ClassName MonitorPointVos
 * @date 2024.03.07 14:23
 */
@Data
public class MonitorPointVos {
 
    private Integer id;
 
    private Integer organizationId;
 
    private String name;
 
    private Double longitude;
 
    private Double latitude;
 
    private String state;
 
    private Integer provinceCode;
 
    private Integer cityCode;
 
    private Integer areaCode;
 
    private String address;
 
    private List<DeviceVO> monitorPoint;
}