| | |
| | | |
| | | 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> (); |
| | | |