HDL Home App 第二版本 旧平台金堂用 正在使用
黄学彪
2020-03-23 cc0d80c7d86c6d0167269b3408c4b30c24ce84e9
ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Common/UserCenterCommon.cs
@@ -14,7 +14,7 @@
        /// <summary>
        /// 是否是子账号进行操作
        /// </summary>
        public bool IsOtherAccountCtrl = Common.Config.Instance.isAdministrator;
        public bool IsOtherAccountCtrl = Common.Config.Instance.Home.IsOthreShare;
    }
    #endregion
@@ -36,6 +36,7 @@
        /// <summary>
        /// DistributedMark
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public string DistributedMark = string.Empty;
        /// <summary>
        /// 邮箱
@@ -58,16 +59,6 @@
        /// </summary>
        public string AuthorityText = string.Empty;
        /// <summary>
        /// 用户图标文件
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public string UserIconFile = string.Empty;
        /// <summary>
        /// 用户图标文件是否改变
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public bool UserIconFileChanged = false;
        /// <summary>
        /// 用户头像数据(临时用,会置空)
        /// </summary>
        public byte[] HeadImage = null;
@@ -79,6 +70,23 @@
        /// 密码验证(临时用,会置空)
        /// </summary>
        public string StringPwd = string.Empty;
        /// <summary>
        /// 用户图标文件
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public string UserIconFile = string.Empty;
        /// <summary>
        /// 用户图标文件是否改变
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public bool UserIconFileChanged = false;
        /// <summary>
        /// 是否初始化用户信息成功
        /// </summary>
        [Newtonsoft.Json.JsonIgnore]
        public bool InitUserInfoSuccess = false;
    }
    /// <summary>
@@ -439,6 +447,10 @@
        /// 固件分布式唯一,也是下载时的[下载固件的唯一标识]参数
        /// </summary>
        public string DistributedMark = string.Empty;
        /// <summary>
        /// 日期(后面追加的 utc时间)
        /// </summary>
        public string CreatedOnUtc = string.Empty;
    }
    /// <summary>
@@ -500,6 +512,10 @@
        /// 镜像类型
        /// </summary>
        public string ImagType = string.Empty;
        /// <summary>
        /// 日期(后面追加的 utc时间)
        /// </summary>
        public string CreatedOnUtc = string.Empty;
    }
    #endregion
@@ -1100,7 +1116,7 @@
        public MessageInfoPra()
        {
            PageSetting.PageSize = 10;
            PageSetting.PageSize = 50;
        }
    }
@@ -1161,6 +1177,10 @@
        /// </summary>
        public bool IsReading = false;
        /// <summary>
        /// 是否已读(listMsg匹配,对应一条数据里面包含多个报警)
        /// </summary>
        public List<bool> ListReading = new List<bool>();
        /// <summary>
        /// 时间 2019-09-10T13:11:55
        /// </summary>
        public string CreatedOnUtc = string.Empty;
@@ -1173,9 +1193,9 @@
        /// </summary>
        public string MsgObjectText = string.Empty;
        /// <summary>
        /// 消息文本
        /// 消息文本(对应一条数据里面包含多个报警)
        /// </summary>
        public string MsgText = string.Empty;
        public List<string> listMsg = new List<string>();
    }
    /// <summary>
@@ -1203,6 +1223,10 @@
        /// 已读状态
        /// </summary>
        public bool IsReading = true;
        /// <summary>
        /// 0:标记全部已读、1:清空所有消息
        /// </summary>
        public int TagAllOrClearType = 0;
    }
    #endregion
@@ -1222,6 +1246,14 @@
        /// 是否出力详细Log 1 -> 出力
        /// </summary>
        public int DetailedLog = 0;
        /// <summary>
        /// 显示设备历史版本 1 -> 显示
        /// </summary>
        public int DeviceHistory = 0;
        /// <summary>
        /// 检测能否广播得到网关
        /// </summary>
        public int CheckCanReceiveGateway = 0;
    }
    #endregion
}