liuxiaolong
2019-05-06 a7bed6b4cfecd61ec153818945f982c5bb796b98
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package com.cloud.model.device;
 
import com.cloud.model.common.BaseDataEntity;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author 设备
 * @date 2018-06-15
 */
@Data
public class Device extends BaseDataEntity<Device> implements Serializable {
 
    /**
     * '组织机构id'
     */
    private Long orgId;
    /**
     * '名称'
     */
    private String deviceName;
    private String description;
    /**
     * '编号'
     */
    private String deviceSn;
    /**
     * 'ip'
     */
    private String ip;
    /**
     * '端口号'
     */
    private String port;
 
    /**
     * '用户名'
     */
    private String username;
    /**
     * '密码'
     */
    private String password;
    /**
     * 排序
     */
    private Integer showOrder;
 
    /**
     * 授权系统
     */
    private String authorizationSystem;
    /**
     * 维保单位
     */
    private String maintenanceUnit;
 
    /**
     * 系统集成单位
     */
    private String systemIntegrator;
 
    /**
     * 设备供应商
     */
    private String equipmentSupper;
 
    /**
     * 图标
     */
    private String icon;
    /**
     * 设备类型
     */
    private String deviceType;
    /**
     * 摄像机品牌
     */
    private String cameraType;
    /**
     * 设备运行状态  0:未联网,1:联网
     */
    private Integer state;
    /**
     * 'rtmp流地址'
     */
    private String rtmpUrl;
    /**
     * '视频流地址'
     */
    private String videoUrl;
    /**
     * '经度'
     */
    private String longitude;
    /**
     * 纬度
     */
    private String latitude;
    /**
     * 预留json
     */
    private String revJson;
    /**
     * 所属区域(分组)
     */
//    private String cameraArea;
//
//    private String createBy;
//
//    private Date createTime;
//    private String updateBy;
//    private Date updateTime;
//    private Integer delFlag;
}