SensorInfoIos.java 6.02 KB
Newer Older
luozhenzhen committed
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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
//package com.demo.entity.po.bak;
//
//import com.demo.entity.dto.DeviceConfDataDto;
//import com.demo.entity.dto.SoftDto;
//import org.springframework.data.mongodb.core.mapping.Document;
//
//import java.util.List;
//
///**
// * 传感器信息
// */
//@Document(collection="SensorInfo")
//public class SensorInfoIos {
//
//    private String reyunId;
//    private String batteryPower;//电池电量
//    private String batteryStatus;//电池状态
//    private String intranetIp;//内网IP
//    private String ip;//公网IP
//    private String wifiBssid;//wifi标识
//    private String diskTotalSize;//磁盘总空间
//    private String diskFreeSize;//磁盘剩余空间
//    private String memoryTotalSize;//总内存大小
//    private String memoryFreeSize;//内存剩余大小
//    private Boolean isRoot;//是否root
//    private Boolean isVpn;//是否开了VPN
//    private Boolean isProxy;//是否开了代理
//    private String cpuUsage;//cpu负载
//    private String activeMemoryValue;//已使用内存
//    private String currentCountry;//国家
//    private String gatewayAddress; //网关地址
//    private String localDeviceIP;//内网IP
//    private String networkIP; //外网IP
//    private String perCPUUsage;//各个cpu负载
//    private String purgableMemoryValue;
//    private String latestFirmware;
//    private String latestSystemUptime;
//    private DeviceConfDataDto risk;
//    private List<SoftDto> softlist;
//
//
//    public String getReyunId() {
//        return reyunId;
//    }
//
//    public void setReyunId(String reyunId) {
//        this.reyunId = reyunId;
//    }
//
//    public String getBatteryPower() {
//        return batteryPower;
//    }
//
//    public void setBatteryPower(String batteryPower) {
//        this.batteryPower = batteryPower;
//    }
//
//    public String getBatteryStatus() {
//        return batteryStatus;
//    }
//
//    public void setBatteryStatus(String batteryStatus) {
//        this.batteryStatus = batteryStatus;
//    }
//
//    public String getIntranetIp() {
//        return intranetIp;
//    }
//
//    public void setIntranetIp(String intranetIp) {
//        this.intranetIp = intranetIp;
//    }
//
//    public String getIp() {
//        return ip;
//    }
//
//    public void setIp(String ip) {
//        this.ip = ip;
//    }
//
//    public String getWifiBssid() {
//        return wifiBssid;
//    }
//
//    public void setWifiBssid(String wifiBssid) {
//        this.wifiBssid = wifiBssid;
//    }
//
//    public String getDiskTotalSize() {
//        return diskTotalSize;
//    }
//
//    public void setDiskTotalSize(String diskTotalSize) {
//        this.diskTotalSize = diskTotalSize;
//    }
//
//    public String getDiskFreeSize() {
//        return diskFreeSize;
//    }
//
//    public void setDiskFreeSize(String diskFreeSize) {
//        this.diskFreeSize = diskFreeSize;
//    }
//
//    public String getMemoryTotalSize() {
//        return memoryTotalSize;
//    }
//
//    public void setMemoryTotalSize(String memoryTotalSize) {
//        this.memoryTotalSize = memoryTotalSize;
//    }
//
//    public String getMemoryFreeSize() {
//        return memoryFreeSize;
//    }
//
//    public void setMemoryFreeSize(String memoryFreeSize) {
//        this.memoryFreeSize = memoryFreeSize;
//    }
//
//    public Boolean getRoot() {
//        return isRoot;
//    }
//
//    public void setRoot(Boolean root) {
//        isRoot = root;
//    }
//
//    public Boolean getVpn() {
//        return isVpn;
//    }
//
//    public void setVpn(Boolean vpn) {
//        isVpn = vpn;
//    }
//
//    public Boolean getProxy() {
//        return isProxy;
//    }
//
//    public void setProxy(Boolean proxy) {
//        isProxy = proxy;
//    }
//
//    public String getCpuUsage() {
//        return cpuUsage;
//    }
//
//    public void setCpuUsage(String cpuUsage) {
//        this.cpuUsage = cpuUsage;
//    }
//
//    public String getActiveMemoryValue() {
//        return activeMemoryValue;
//    }
//
//    public void setActiveMemoryValue(String activeMemoryValue) {
//        this.activeMemoryValue = activeMemoryValue;
//    }
//
//    public String getCurrentCountry() {
//        return currentCountry;
//    }
//
//    public void setCurrentCountry(String currentCountry) {
//        this.currentCountry = currentCountry;
//    }
//
//    public String getGatewayAddress() {
//        return gatewayAddress;
//    }
//
//    public void setGatewayAddress(String gatewayAddress) {
//        this.gatewayAddress = gatewayAddress;
//    }
//
//    public String getLocalDeviceIP() {
//        return localDeviceIP;
//    }
//
//    public void setLocalDeviceIP(String localDeviceIP) {
//        this.localDeviceIP = localDeviceIP;
//    }
//
//    public String getNetworkIP() {
//        return networkIP;
//    }
//
//    public void setNetworkIP(String networkIP) {
//        this.networkIP = networkIP;
//    }
//
//    public String getPerCPUUsage() {
//        return perCPUUsage;
//    }
//
//    public void setPerCPUUsage(String perCPUUsage) {
//        this.perCPUUsage = perCPUUsage;
//    }
//
//    public String getPurgableMemoryValue() {
//        return purgableMemoryValue;
//    }
//
//    public void setPurgableMemoryValue(String purgableMemoryValue) {
//        this.purgableMemoryValue = purgableMemoryValue;
//    }
//
//    public String getLatestFirmware() {
//        return latestFirmware;
//    }
//
//    public void setLatestFirmware(String latestFirmware) {
//        this.latestFirmware = latestFirmware;
//    }
//
//    public String getLatestSystemUptime() {
//        return latestSystemUptime;
//    }
//
//    public void setLatestSystemUptime(String latestSystemUptime) {
//        this.latestSystemUptime = latestSystemUptime;
//    }
//
//    public DeviceConfDataDto getRisk() {
//        return risk;
//    }
//
//    public void setRisk(DeviceConfDataDto risk) {
//        this.risk = risk;
//    }
//
//    public List<SoftDto> getSoftlist() {
//        return softlist;
//    }
//
//    public void setSoftlist(List<SoftDto> softlist) {
//        this.softlist = softlist;
//    }
//}