wjc
2026-03-23 b63ff58e2c415bae2fb4741aebe710fa3576ff66
app/src/main/java/com/hdl/photovoltaic/ui/bean/HouseIdBean.java
@@ -11,9 +11,9 @@
 */
public class HouseIdBean implements Serializable {
    private String homeId;//电站id
    private String debugType="NORMAL";//调试类型(NORMAL =常规调试;SIMPLE =简易调试)
    private String communityId="";//项目id
    private String flowRecordContent="";//流转记录内容
    private String debugType = "NORMAL";//调试类型(NORMAL =常规调试;SIMPLE =简易调试)
    private String communityId = "";//项目id
    private String flowRecordContent = "";//流转记录内容
    private String powerStationImage;//电站图片
    private String homeName;//电站名称
    private String installedCapacity;//组串容量(创建电站时输入的组串容量)
@@ -63,6 +63,21 @@
     * SECONDARY_DEBUGGIN = 授权调试
     */
    private String debugStatus;
    /**
     * 电站类型
     * INV = 逆变器电站
     * BMS = BMS电站
     */
    private String powerStationType = "INV";
    public String getPowerStationType() {
        return powerStationType;
    }
    public void setPowerStationType(String powerStationType) {
        this.powerStationType = powerStationType;
    }
    public String getDebugType() {
        return debugType;
    }
@@ -86,6 +101,7 @@
    public void setFlowRecordContent(String flowRecordContent) {
        this.flowRecordContent = flowRecordContent;
    }
    public String getDebugStatus() {
        return debugStatus == null ? "" : debugStatus;
    }
@@ -257,6 +273,6 @@
        if (this.location == null) {
            return this.getAddress();
        }
        return this.location.getNationName() +" "+ this.location.getProvinceName() +" "+ this.location.getCityName() +" "+ this.getAddress();
        return this.location.getNationName() + " " + this.location.getProvinceName() + " " + this.location.getCityName() + " " + this.getAddress();
    }
}