| | |
| | | return $"House_{Id}.json"; |
| | | } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 住宅id--使用云端提供的住宅唯一Id |
| | | /// </summary> |
| | | public string Id = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 住宅名称 |
| | | /// </summary> |
| | | public string Name = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 是否为其他主用户分享过来的住宅 |
| | | /// </summary> |
| | |
| | | /// 当前住宅是其他主帐号分享过来的主帐号的分布式Id
|
| | | /// </summary>
|
| | | public string MainUserDistributedMark; |
| | | |
| | | /// <summary>
|
| | | /// 该住宅是否是虚拟的,true的话代表网关和设备都是虚拟的(默认为false)
|
| | | /// </summary> |
| | | public bool IsVirtually = false; |
| | | /// <summary> |
| | | /// 仅子账号登陆的时候使用,当【IsOthreShare】为"true",并且【AccountType】为"1"时,该账号拥有管理员权限 |
| | | /// </summary> |
| | |
| | | /// 住宅所在的地理位置的名称
|
| | | /// </summary> |
| | | public string ResidenceAddressName = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 房间列表(房间的ID) |
| | | /// </summary> |
| | | public List<string> ListRooms = new List<string>(); |
| | | |
| | | /// <summary> |
| | | /// 楼层字典 |
| | | /// key:FloorId |
| | |
| | | /// 当前楼层Id |
| | | /// </summary> |
| | | public string CurrentFloorId = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 全局场景路径列表---备用 |
| | | /// </summary> |
| | | public List<string> SceneFilePathList = new List<string> { }; |
| | | /// <summary> |
| | | /// 设备路径列表---备用 |
| | | /// </summary> |
| | | public List<string> DeviceFilePathList = new List<string> { }; |
| | | /// <summary> |
| | | /// 功能路径列表---备用 |
| | | /// </summary> |
| | | public List<string> FunctionFilePathList = new List<string> { }; |
| | | /// <summary> |
| | | /// 通用标识--备用 |
| | | /// </summary> |
| | | public object Tag; |
| | | /// <summary> |
| | | /// 期、栋、层等区域---备用 |
| | | /// </summary> |
| | | public Dictionary<string, string> LocationInfoList = new Dictionary<string, string> { }; |
| | | |
| | | #endregion |
| | | |