| | |
| | | private String deviceType; |
| | | private String outputActivePower;//逆变器输出有功功率 |
| | | |
| | | |
| | | private boolean activate;//是否激活设备(true:激活;false:未激活) |
| | | |
| | | |
| | | private String workStatusDesc;//工作状态(负载中心设备) |
| | | |
| | | private boolean popUpgrade;//改设备是否有弹窗升级 |
| | | private boolean subPopUpgrade;//下挂设备是否有弹窗升级 |
| | | |
| | | |
| | | public boolean isActivate() { |
| | | return activate; |
| | | } |
| | | |
| | | private String deviceOidId;//设备云端oid(bms设备)才有 |
| | | private List<FwVersionBean> fwVersion = new ArrayList<>();//固件版本,BMS设备才有 |
| | | |
| | | public List<FwVersionBean> getFwVersion() { |
| | | return fwVersion; |
| | | } |
| | | |
| | | public void setFwVersion(List<FwVersionBean> fwVersion) { |
| | | this.fwVersion = fwVersion; |
| | | } |
| | | |
| | | public String getDeviceOidId() { |
| | | return deviceOidId == null ? "" : deviceOidId; |
| | | } |
| | | |
| | | public void setDeviceOidId(String deviceOidId) { |
| | | this.deviceOidId = deviceOidId; |
| | | } |
| | | |
| | | |
| | | public void setActivate(boolean activate) { |
| | | this.activate = activate; |
| | | } |
| | | |
| | | public String getWorkStatusDesc() { |
| | | return workStatusDesc == null ? "" : this.workStatusDesc; |
| | | } |
| | | |
| | | public void setWorkStatusDesc(String workStatusDesc) { |
| | | this.workStatusDesc = workStatusDesc; |
| | | } |
| | | |
| | | public boolean isSubPopUpgrade() { |
| | | return subPopUpgrade; |
| | | } |
| | | |
| | | public void setSubPopUpgrade(boolean subPopUpgrade) { |
| | | this.subPopUpgrade = subPopUpgrade; |
| | | } |
| | | |
| | | public boolean isPopUpgrade() { |
| | | return popUpgrade; |
| | | } |
| | | |
| | | public void setPopUpgrade(boolean popUpgrade) { |
| | | this.popUpgrade = popUpgrade; |
| | | } |
| | | |
| | | /** |
| | | * 房间归属 |
| | | */ |
| | |
| | | public void setOgMaster(boolean ogMaster) { |
| | | this.ogMaster = ogMaster; |
| | | } |
| | | |
| | | public List<String> getUids() { |
| | | return uids; |
| | | } |
| | |
| | | public void setOutputActivePower(String outputActivePower) { |
| | | this.outputActivePower = outputActivePower; |
| | | } |
| | | } |
| | | } |
| | | |