| | |
| | | |
| | | public class CloudInverterDeviceBean implements Serializable { |
| | | |
| | | |
| | | /** |
| | | * true-在线 |
| | | * false-离线 |
| | | */ |
| | | private boolean online; |
| | | private String gatewayId;//网关Id |
| | | private String gatewayName;//网关名称 |
| | | private String deviceId;//设备id |
| | |
| | | private String osn;//设备sn(mac) |
| | | private String powerPvNow;//发电功率 |
| | | private String totalElectricityPvToday;//今日发电量 |
| | | private String systemStatusDesc;//状态 |
| | | |
| | | private String inv;//inv状态 |
| | | private int deviceStatus;//1:待机,2:连接中,3:故障,4:运行,5:离线 |
| | | private String addresses; |
| | | private Map<String, String> status; |
| | | |
| | | private String hwVersion;//软件版本号 |
| | | private String categorySecondName;//设备类型(产品二级分类名称) |
| | | |
| | | public String getSystemStatusDesc() { |
| | | return systemStatusDesc== null ? "" :systemStatusDesc; |
| | | } |
| | | |
| | | public void setSystemStatusDesc(String systemStatusDesc) { |
| | | this.systemStatusDesc = systemStatusDesc; |
| | | } |
| | | |
| | | public String getHwVersion() { |
| | | return hwVersion== null ? "" :hwVersion; |
| | | } |
| | | |
| | | public void setHwVersion(String hwVersion) { |
| | | this.hwVersion = hwVersion; |
| | | } |
| | | |
| | | public String getCategorySecondName() { |
| | | return categorySecondName== null ? "" :categorySecondName; |
| | | } |
| | | |
| | | public void setCategorySecondName(String categorySecondName) { |
| | | this.categorySecondName = categorySecondName; |
| | | } |
| | | |
| | | |
| | | public String getGatewayId() { |
| | | return gatewayId == null ? "" : gatewayId; |
| | |
| | | public void setStatus(Map<String, String> status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public boolean isOnline() { |
| | | return online; |
| | | } |
| | | |
| | | public void setOnline(boolean online) { |
| | | this.online = online; |
| | | } |
| | | } |