|
@@ -0,0 +1,20 @@
|
|
|
+package com.sky.ioc.entity.domain.device;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+@TableName("energy_device")
|
|
|
+public class SecurityDevice {
|
|
|
+
|
|
|
+ private Integer id;
|
|
|
+ private String device_name;//设备名称')
|
|
|
+ private String device_id;//设备id')
|
|
|
+ private Integer device_type;//设备类型(1-摄像头)')
|
|
|
+ private String device_location;//设备位置')
|
|
|
+ private String loop_detail;//回路地址')
|
|
|
+ private String gateway_code;//所属单位ID')
|
|
|
+ private String gateway_ip;//网关服务器')
|
|
|
+ private String usage;//用途')
|
|
|
+ private String status;//设备状态(1-开启)')
|
|
|
+}
|