| | |
| | | //远程连接的Mqtt的客户端ID |
| | | public String connEmqClientId; |
| | | //当前登录的账号是不是之前的账号 |
| | | public boolean theSameLoginAccount; |
| | | private boolean theSameLoginAccount; |
| | | |
| | | //绑定手机号 |
| | | private String bingPhone; |
| | | //绑定邮箱 |
| | | private String bingEmail; |
| | | |
| | | //温度单位(C摄氏度;F=华氏度) |
| | | private String temperature_unit = "℃"; |
| | | |
| | | //app当前的语言 |
| | | private String currentAppLanguage; |
| | | |
| | | public String getCurrentAppLanguage() { |
| | | return currentAppLanguage; |
| | | } |
| | | |
| | | public void setCurrentAppLanguage(String currentAppLanguage) { |
| | | this.currentAppLanguage = currentAppLanguage; |
| | | } |
| | | |
| | | public String getTemperature_unit() { |
| | | return temperature_unit; |
| | | } |
| | | |
| | | public void setTemperature_unit(String temperature_unit) { |
| | | this.temperature_unit = temperature_unit; |
| | | } |
| | | |
| | | public String getBingPhone() { |
| | | return bingPhone == null ? "" : bingPhone; |
| | | } |
| | | |
| | | public void setBingPhone(String bingPhone) { |
| | | this.bingPhone = bingPhone; |
| | | } |
| | | |
| | | |
| | | public String getBingEmail() { |
| | | return bingEmail == null ? "" : bingEmail; |
| | | } |
| | | |
| | | public void setBingEmail(String bingEmail) { |
| | | this.bingEmail = bingEmail; |
| | | } |
| | | |
| | | /** |
| | | * 用户名称 |