fuliqi
2025-02-10 db75b45e9a7ce347162b8d3a36e4a7f46cfe199e
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.ycl.platform.domain.excel;
 
import annotation.Excel;
import com.ycl.platform.domain.vo.DynamicColumnVO;
import lombok.Data;
 
import java.util.List;
 
@Data
public class TMonitorExp {
    /**
     * 设备编码
     */
    @Excel(name = "设备编码")
    private String serialNumber;
 
    /**
     * 设备名称
     */
    @Excel(name = "设备名称")
    private String name;
 
    /**
     * 摄像机IPV4或IPV6地址
     */
    @Excel(name = "IP")
    private String ip;
 
    /**
     * 摄像机功能类型[1.视频监控;2.车辆识别;3.人员识别;] 数据格式[填入多个值并以/隔开。例如  1/2]
     */
    @Excel(name = "摄像机功能类型")
    private String cameraFunType;
 
    /**
     * 设备状态
     */
    @Excel(name = "状态", readConverterExp = "-1=离线,1=在线,0=未知")
    private Integer onState;
    /**
     * 行政区域
     */
    @Excel(name = "行政区域")
    private String deptName;
 
    /**
     * 管理单位
     */
    @Excel(name = "管理单位")
    private String managementUnit;
    /**
     * 标签
     */
    @Excel(name = "标签")
    private String tag;
    private Boolean provinceTagVideo;
    private Boolean provinceTagCar;
    private Boolean provinceTagFace;
    private Boolean deptTag;
    private Boolean importantTag;
    private Boolean importantCommandImageTag;
 
    private Integer pointId;
    /**
     * 动态列
     */
    private List<DynamicColumnVO> dynamicColumnList;
}