| | |
| | | private String deviceOid;//设备oid |
| | | private String deviceDesc;//设备备注 |
| | | |
| | | |
| | | private String deviceType;//设备类型(INV : 逆变器, BMS : BMS控制盒, BATTERY : 电池单元) |
| | | private String deviceTypeDesc;//设备类型描述 |
| | | |
| | | |
| | | private String typeDesc;//类型描述 |
| | | private String effectScope;//影响范围 NO_EFFECT : 无影响范围报警 |
| | | private String effectScopeDesc;//影响范围描述 |
| | |
| | | private String address;//详细地址 |
| | | |
| | | |
| | | private boolean isRead;//是否已经读取 |
| | | private boolean isRead;//是否已经读取(true=读取) |
| | | |
| | | private HouseInfoBean.Location location = new HouseInfoBean.Location();//电站地址 |
| | | |
| | | public String getDeviceType() { |
| | | return deviceType == null ? "" : deviceType; |
| | | } |
| | | |
| | | public void setDeviceType(String deviceType) { |
| | | this.deviceType = deviceType; |
| | | } |
| | | |
| | | public String getDeviceTypeDesc() { |
| | | return deviceTypeDesc == null ? "" : deviceTypeDesc; |
| | | } |
| | | |
| | | public void setDeviceTypeDesc(String deviceTypeDesc) { |
| | | this.deviceTypeDesc = deviceTypeDesc; |
| | | } |
| | | |
| | | public String getDeviceOidId() { |
| | | return deviceOidId == null ? "" : deviceOidId; |
| | |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 电站完整的地址 |
| | | * |
| | | * @return - |
| | | */ |
| | | public String getLocationAddress() { |
| | | |
| | | return location.getNationName() + ">" + location.getProvinceName() + ">" + location.getCityName() + ">" + address; |
| | | |
| | | } |
| | | |
| | | |
| | | } |