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;
|
}
|