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