using Central.Control.Domain; using MES.Production.Entity; using System.Collections.Generic; namespace MES.Production.Service { /// /// 通用用户登录类,简单信息 /// public class Account { #region Attribute /// /// 主键 /// public int Id { get; set; } /// /// 姓名 /// public string Name { get; set; } /// /// 登录的用户名 /// public string LogName { get; set; } /// /// 登录密码 /// public string PassWord { get; set; } /// /// 是否管理员 /// public bool IsAdmin { get; set; } /// /// 用户头像 /// public string Face_Img { get; set; } /// /// 用户类型 /// public int USERTYPE { get; set; } /// /// 用户主部门 /// public YM_School DptInfo { get; set; } /// /// 用户所在部门集合 /// //public List Dpt { get; set; } /// /// 权限集合 /// public List Permissions { get; set; } /// /// 角色的集合 /// public List Roles { get; set; } /// /// 用户岗位集合 /// public List PostUser { get; set; } /// /// 用户可操作的模块集合 /// public List Modules { get; set; } #endregion } }