| | |
| | | /// 安防密码 |
| | | /// </summary> |
| | | public string ArmPW = "85521566"; |
| | | /// <summary> |
| | | /// 网关上网秘钥 |
| | | /// </summary> |
| | | public string GatewayNetKey = string.Empty; |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | |
| | | public List<RegionInfoRes> HomeLists = new List<RegionInfoRes> (); |
| | | |
| | | public RegionInfoRes CurrentRegion = new RegionInfoRes (); |
| | | //public RegionInfoRes CurrentRegion = new RegionInfoRes (); |
| | | |
| | | RegionInfoRes currentRegion = new RegionInfoRes (); |
| | | public RegionInfoRes CurrentRegion { |
| | | set { |
| | | currentRegion = value; |
| | | //2020-07-22 修复切换住宅,MAC不刷新问题 |
| | | GatewayMAC = currentRegion.MAC; |
| | | |
| | | } |
| | | get { |
| | | if (currentRegion == null) { |
| | | currentRegion = new RegionInfoRes (); |
| | | } |
| | | return currentRegion; |
| | | |
| | | } |
| | | |
| | | } |
| | | |
| | | public List<GatewayRes> GatewayList = new List<GatewayRes> (); |
| | | |