using Common.Enum; namespace Entity.Dto.Resp { /// /// 用户登录信息 /// public class LoginUserResp { /// /// 用户id /// public long Id { get; set; } /// /// 账号名称 /// public string Account { get; set; } /// /// 真实姓名 /// public string RealName { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 身份证 /// public string IdCardNum { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// 账号类型 /// public AccountTypeEnum AccountType { get; set; } = AccountTypeEnum.NormalUser; /// /// 头像 /// public string Avatar { get; set; } /// /// 个人简介 /// public string Introduction { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 电子签名 /// public string Signature { get; set; } /// /// 机构Id /// public long OrgId { get; set; } /// /// 机构名称 /// public string OrgName { get; set; } /// /// 机构类型 /// public string OrgType { get; set; } /// /// 职位名称 /// public string PosName { get; set; } /// /// 按钮权限集合 /// public List Buttons { get; set; } /// /// 角色集合 /// public List RoleIds { get; set; } } }