IntelligentRecognition/ah-jjsp-service/.svn/pristine/19/1982a314ef51c6c652fae94b895...

77 lines
3.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.securityControl.system.domain.vo;
import lombok.Data;
@Data
public class TYDeviceResultValue {
public String id;//设备id
public String devCode;//设备编码
public String devType;//设备类型(01:智能网络高速球机02:网络中速球机03:网络固定摄像机04:智能高速球机05:中速球机06:云台摄像机07:固定摄像机08:红外热成像摄像机09:监拍装置10:布控球11:手持终端/单兵12:智能安全帽13:智能巡检机器人14:无人机15:移动采集设备16:红外对射17:红外双鉴18:水浸探头19:烟雾探测20:温度探测21:警笛22:门禁控制器23:电子围栏25:震动监测26:一键警报31:温度传感器32:湿度传感器33:SF6浓度监测设备41:数据存储设备42:射频增强设备43:光端机44:网络延伸器45:交换机46:防火墙51:工控机/板卡DVR52:嵌入式DVR/NVS53:IP Camera54:综合接入设备55:智能分析装置56:人脸分析设备61:灯光控制器62:云镜控制器63:告警控制器64:视频切换控制器71:赋值照明装置72:时钟控制装置73:视频解码设备74:打印机75:窗口采集设备76:网口采集设备77:综合接入装置)
public String devName;//设备名称
public String devShortName;//设备简称
public String path;//资源路径
public String nodeCode;//设备所属资源节点
public String status;//设备状态 0:不在线1:在线2:不可用
public String sDecodeTag;//设备解码标签108:H265100:H264150:非标
public String lng;//经度位置
public String lat;//纬度
public String sysinfoCode;//设备所属前端编码
public String gisPeerCode;//GIS侧标识设备的编码
public String isAuthorized;//是否授权设备 1:已授权0:未授权
public String lastActiveTime;//最近设备活跃时间
public String lastOfflineTime;//最近设备离线时间
public String dvrCode;//dvr编码
public String isCheck;//设备是否关联dvr
public String fontTypeCode;//电压等级
@Override
public String toString() {
return "TDResultValue{" +
"id='" + id + '\'' +
", devCode='" + devCode + '\'' +
", devType='" + devType + '\'' +
", devName='" + devName + '\'' +
", devShortName='" + devShortName + '\'' +
", path='" + path + '\'' +
", nodeCode='" + nodeCode + '\'' +
", status='" + status + '\'' +
", sDecodeTag='" + sDecodeTag + '\'' +
", lng='" + lng + '\'' +
", lat='" + lat + '\'' +
", sysinfoCode='" + sysinfoCode + '\'' +
", gisPeerCode='" + gisPeerCode + '\'' +
", isAuthorized='" + isAuthorized + '\'' +
", lastActiveTime='" + lastActiveTime + '\'' +
", lastOfflineTime='" + lastOfflineTime + '\'' +
", dvrCode='" + dvrCode + '\'' +
", isCheck='" + isCheck + '\'' +
", fontTypeCode='" + fontTypeCode + '\'' +
'}';
}
}