| | |
| | | private String deviceId; |
| | | |
| | | /** |
| | | * 毫米波sid |
| | | * sid |
| | | */ |
| | | private String sid; |
| | | |
| | | |
| | | /** |
| | | * 设备来源(自定义:0=表示网关;1=表示平台) |
| | | */ |
| | | private String src; |
| | | |
| | | private String systemStatusDesc;//云端-状态 |
| | | |
| | |
| | | private String categorySecondName;//云端-设备类型(产品二级分类名称) |
| | | |
| | | |
| | | public String getSrc() { |
| | | return src == null ? "" : this.src; |
| | | } |
| | | //子网号/设备号 |
| | | private String addresses; |
| | | |
| | | public void setSrc(String src) { |
| | | this.src = src; |
| | | } |
| | | //网关状态:1:待机,2:连接中,3:故障,4:运行,5:离线 |
| | | private int deviceStatus; |
| | | |
| | | private String powerPvNow;//发电功率 |
| | | private String totalElectricityPvToday;//今日发电量 |
| | | |
| | | |
| | | public String getAesKey() { |
| | | return aesKey == null ? "" : aesKey; |
| | |
| | | public void setCategorySecondName(String categorySecondName) { |
| | | this.categorySecondName = categorySecondName; |
| | | } |
| | | |
| | | public String getAddresses() { |
| | | return addresses == null ? "" : addresses; |
| | | } |
| | | |
| | | public void setAddresses(String addresses) { |
| | | this.addresses = addresses; |
| | | } |
| | | |
| | | public int getDeviceStatus() { |
| | | return deviceStatus; |
| | | } |
| | | |
| | | public void setDeviceStatus(int deviceStatus) { |
| | | this.deviceStatus = deviceStatus; |
| | | } |
| | | |
| | | public String getPowerPvNow() { |
| | | return powerPvNow == null ? "" : powerPvNow; |
| | | } |
| | | |
| | | public void setPowerPvNow(String powerPvNow) { |
| | | this.powerPvNow = powerPvNow; |
| | | } |
| | | |
| | | public String getTotalElectricityPvToday() { |
| | | return totalElectricityPvToday == null ? "" : totalElectricityPvToday; |
| | | } |
| | | |
| | | public void setTotalElectricityPvToday(String totalElectricityPvToday) { |
| | | this.totalElectricityPvToday = totalElectricityPvToday; |
| | | } |
| | | } |