wjc
2025-05-07 b9cc7390e8e8ce64c41c26fb369c98ce669d660c
app/src/main/java/com/hdl/photovoltaic/config/UserConfigManage.java
@@ -36,6 +36,9 @@
        return sUserConfigManage;
    }
    //uni一级界面的安全距离背景颜色(0=电站详情界面,1=添加电站界面,2=设备调测界面)
    private int uniBottomSafeDistanceBackgroundColor;
    //当前账号:刷新Token用的token(不用记录什么有效期,如果刷新失败,就踢人即可)
    private String refreshToken;
    //账户登录成功时的时间
@@ -93,7 +96,7 @@
    //用户头像
    private String userImageUrl;
    private String userImageUrl = "/static/image/user-default-head.png";
    /// <summary>
@@ -106,7 +109,7 @@
    public String pushId;
    public String getUserImageUrl() {
        return userImageUrl == null ? "" : userImageUrl;
        return userImageUrl == null ? "/static/image/user-default-head.png" : userImageUrl;
    }
    public void setUserImageUrl(String userImageUrl) {
@@ -296,6 +299,24 @@
    }
    /**
     * uni一级界面的安全距离背景颜色(0=电站详情界面,1=添加电站界面,2=设备调测界面)
     *
     * @return 值
     */
    public int getUniBottomSafeDistanceBackgroundColor() {
        return this.uniBottomSafeDistanceBackgroundColor;
    }
    /**
     * uni一级界面的安全距离背景颜色(0=电站详情界面,1=添加电站界面,2=设备调测界面)
     *
     * @param uniBottomSafeDistanceBackgroundColorValue (0=电站详情界面,1=添加电站界面,2=设备调测界面)
     */
    public void setUniBottomSafeDistanceBackgroundColor(int uniBottomSafeDistanceBackgroundColorValue) {
        this.uniBottomSafeDistanceBackgroundColor = uniBottomSafeDistanceBackgroundColorValue;
    }
    /**
     * 当前住宅
     */
    private HouseInfoBean m_Home = null;