mac
2024-05-21 3eb60f615d621a3acb72a17f14e011b0d1ef749e
app/src/main/java/com/hdl/photovoltaic/ui/bean/CloudInverterDeviceBean.java
@@ -32,12 +32,13 @@
    private String inv;//inv状态
    private int deviceStatus;//1:待机,2:连接中,3:故障,4:运行,5:离线
    private String addresses;
    private String addresses;//子网号/设备号
    private List<DeviceAttributeBean> status;
    private String hwVersion;//软件版本号
    private String categorySecondName;//设备类型(产品二级分类名称)
    private String deviceType;//(设备类型INV : 逆变器,BMS : BMS控制盒,BATTERY : 电池单元)
    public String getSystemStatusDesc() {
        return systemStatusDesc == null ? "" : systemStatusDesc;
@@ -130,7 +131,7 @@
    }
    public String getOsn() {
        return osn == null ? "" : osn;
        return osn == null ? "" : "SN:" + osn;
    }
    public void setOsn(String osn) {
@@ -193,5 +194,11 @@
        this.online = online;
    }
    public String getDeviceType() {
        return deviceType == null ? "" : deviceType;
    }
    public void setDeviceType(String deviceType) {
        this.deviceType = deviceType;
    }
}