wjc
2026-03-24 c4ae4589c6c001329ebb731589b209e8ddcbf7ca
sdk/src/main/java/com/hdl/sdk/link/core/bean/gateway/GatewayBean.java
@@ -113,16 +113,43 @@
    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;
    }
    private boolean activate;//是否激活设备(true:激活;false:未激活)
    public String getWorkStatusDesc() {
        return workStatusDesc == null ? "" : this.workStatusDesc;
@@ -131,11 +158,6 @@
    public void setWorkStatusDesc(String workStatusDesc) {
        this.workStatusDesc = workStatusDesc;
    }
    private String workStatusDesc;//工作状态(负载中心设备)
    private  boolean popUpgrade;//改设备是否有弹窗升级
    private  boolean subPopUpgrade;//下挂设备是否有弹窗升级
    public boolean isSubPopUpgrade() {
        return subPopUpgrade;
@@ -152,8 +174,6 @@
    public void setPopUpgrade(boolean popUpgrade) {
        this.popUpgrade = popUpgrade;
    }
    /**
     * 房间归属
@@ -548,4 +568,5 @@
    public void setOutputActivePower(String outputActivePower) {
        this.outputActivePower = outputActivePower;
    }
}
}