wjc
2025-05-07 b9cc7390e8e8ce64c41c26fb369c98ce669d660c
sdk/src/main/java/com/hdl/sdk/link/core/bean/gateway/GatewayBean.java
@@ -54,9 +54,15 @@
     */
    private String access_mode;
    /**
     * 是否主网关 true false
     * 是否主网关 true false,用于link网驱动
     */
    private String master;
    /**
     * 是否主网关 true false 用于光伏驱动
     */
    private boolean ogMaster;//离网逆变器才返回
    /**
     * 是否加密
     */
@@ -82,8 +88,7 @@
    private String sid;
    private String spk = "energy.hdl_inverter";
    private String spk = "";
    private String systemStatusDesc;//云端-状态
@@ -108,14 +113,32 @@
    private String deviceType;
    private String outputActivePower;//逆变器输出有功功率
    public String getWorkStatusDesc() {
        return workStatusDesc==null?"":this.workStatusDesc;
    }
    public void setWorkStatusDesc(String workStatusDesc) {
        this.workStatusDesc = workStatusDesc;
    }
    private String workStatusDesc;//工作状态(负载中心设备)
    /**
     * 房间归属
     */
    private List<String> uids = new ArrayList<>();
    public boolean isOgMaster() {
        return ogMaster;
    }
    public void setOgMaster(boolean ogMaster) {
        this.ogMaster = ogMaster;
    }
    public List<String> getUids() {
        return uids;
    }
    public void setUids(List<String> uids) {
        this.uids = uids;
@@ -399,7 +422,6 @@
    }
    public String getSystemStatusDesc() {
        return systemStatusDesc == null ? "" : systemStatusDesc;
    }
@@ -479,7 +501,7 @@
    }
    public String getDeviceType() {
        return deviceType==null?"":deviceType;
        return deviceType == null ? "" : deviceType;
    }
    public void setDeviceType(String deviceType) {