2021与蓝度共同重构项目,服务端
zhanzhiqin
2021-12-21 5c5aad749303149022a1957e2be04e9116b97397
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package com.sandu.ximon.dao.domain;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.time.LocalDateTime;
 
/**
 * @author ZZQ
 * @date 2021/12/17 15:46
 */
@Data
public class YSY_MonitorDto {
    private String code;
    private String msg;
    private data data;
 
 
    public class data {
//        {
//            "deviceSerial": "F34465099",
//                "deviceName": "DS-2DE4223IW-DE(F34465099)",
//                "localName": "DS-2DE4223IW-DE(F34465099)",
//                "model": "DS-2DE4223IW-DE",
//                "status": 1,
//                "defence": 0,
//                "isEncrypt": 1,
//                "alarmSoundMode": 0,
//                "offlineNotify": 0,
//                "category": "UNKNOWN",
//                "parentCategory": "COMMON",
//                "updateTime": 1612337396000,
//                "netType": null,
//                "signal": null,
//                "riskLevel": 0,
//                "netAddress": "119.132.57.169"
//        }
        private String deviceSerial;
        private String deviceName;
        private String localName;
        private String model;
        private Integer status;
        private Integer defence;
        private Integer isEncrypt;
        private Integer alarmSoundMode;
        private Integer offlineNotify;
        private String category;
        private String parentCategory;
        private LocalDateTime updateTime;
//        private Object netType;
//        private Object signal;
        private Integer riskLevel;
        private String netAddress;
 
        public String getDeviceSerial() {
            return deviceSerial;
        }
 
        public void setDeviceSerial(String deviceSerial) {
            this.deviceSerial = deviceSerial;
        }
 
        public String getDeviceName() {
            return deviceName;
        }
 
        public void setDeviceName(String deviceName) {
            this.deviceName = deviceName;
        }
 
        public String getLocalName() {
            return localName;
        }
 
        public void setLocalName(String localName) {
            this.localName = localName;
        }
 
        public String getModel() {
            return model;
        }
 
        public void setModel(String model) {
            this.model = model;
        }
 
        public Integer getStatus() {
            return status;
        }
 
        public void setStatus(Integer status) {
            this.status = status;
        }
 
        public Integer getDefence() {
            return defence;
        }
 
        public void setDefence(Integer defence) {
            this.defence = defence;
        }
 
        public Integer getIsEncrypt() {
            return isEncrypt;
        }
 
        public void setIsEncrypt(Integer isEncrypt) {
            this.isEncrypt = isEncrypt;
        }
 
        public Integer getAlarmSoundMode() {
            return alarmSoundMode;
        }
 
        public void setAlarmSoundMode(Integer alarmSoundMode) {
            this.alarmSoundMode = alarmSoundMode;
        }
 
        public Integer getOfflineNotify() {
            return offlineNotify;
        }
 
        public void setOfflineNotify(Integer offlineNotify) {
            this.offlineNotify = offlineNotify;
        }
 
        public String getCategory() {
            return category;
        }
 
        public void setCategory(String category) {
            this.category = category;
        }
 
        public String getParentCategory() {
            return parentCategory;
        }
 
        public void setParentCategory(String parentCategory) {
            this.parentCategory = parentCategory;
        }
 
        public LocalDateTime getUpdateTime() {
            return updateTime;
        }
 
        public void setUpdateTime(LocalDateTime updateTime) {
            this.updateTime = updateTime;
        }
 
        public Integer getRiskLevel() {
            return riskLevel;
        }
 
        public void setRiskLevel(Integer riskLevel) {
            this.riskLevel = riskLevel;
        }
 
        public String getNetAddress() {
            return netAddress;
        }
 
        public void setNetAddress(String netAddress) {
            this.netAddress = netAddress;
        }
    }
 
}