wzp
2023-03-02 adee7a71ba7ab1b63cab63381dfe1846437853d6
web/Model/Model/SysUser.cs
@@ -14,6 +14,10 @@
        public string Password { get; set; }
        public string Salt { get; set; }   //加密盐
        public string UserName { get; set; }
        public DateTime ExpireTime { get; set; }
        public DateTime CreateTime { get; set; }
@@ -36,6 +40,13 @@
        public string ClientIp { get; set; }
        public int Status { get; set; }
        //public int UserType { get; set; }   //用户类型,多个时以“,”分隔:1-管理员;2-业务员--全员;3-客户经理;4-客服人员;5-财务人员
        public string UserType { get; set; }    //关联字典数据表的类型为:USER_ROLE。多个角色时以半角“,”分隔。
        public string RoleNames { get; set; }   //角色名称:多个角色时以半角“,”分隔。
        public Dictionary<string, SysUserMenu> MenuIDList { get; set; }
        public bool HasRight(string code)