using System; namespace Permission.Service.DTO.ApiModels { public class UserModel { /// /// 主键 /// public string UserId { get; set; } public string GuidId { get; set; } /// /// 登陆账号 /// public string Account { get; set; } /// /// 姓名 /// public string RealName { get; set; } /// /// 职务 /// public string UserPost { get; set; } /// /// 职务 /// public string DutyName { get; set; } /// /// 用户编码 /// public string EnCode { get; set; } /// /// 用户类型 /// public int? UserType { get; set; } /// /// 密钥 /// public string Secretkey { get; set; } /// /// 昵称 /// public string NickName { get; set; } /// /// 头像数据流 /// public string HeadBytes { get; set; } /// /// 头像 /// public string HeadIcon { get; set; } public bool HeadIsNew { get; set; } /// /// 快速查询 /// public string QuickQuery { get; set; } /// /// 简拼 /// public string SimpleSpelling { get; set; } /// /// 性别 /// public string Gender { get; set; } /// /// 籍贯 /// public string Origin { get; set; } /// /// 民族 /// public string Nation { get; set; } /// /// 政治面貌 /// public string Political { get; set; } /// /// 出生日期 /// public DateTime? Birthday { get; set; } /// /// 手机号码 /// public string Mobile { get; set; } /// /// 机构主键 /// public string OrganizeId { get; set; } /// /// 机构名称 /// public string OrganizeName { get; set; } /// /// 部门主键 /// public string DepartmentId { get; set; } /// /// 部门名称 /// public string DepName { get; set; } /// /// 电话号码 /// public string Telephone { get; set; } /// /// 电子邮件 /// public string Email { get; set; } /// /// QQ号码 /// public string QQ { get; set; } /// /// 微信号码 /// public string WeChat { get; set; } /// /// MSN号码 /// public string MSN { get; set; } /// /// 身份证号码 /// public string CardId { get; set; } /// /// 在线状态 /// public int? UserOnLine { get; set; } /// /// /// public int? OpenId { get; set; } /// /// 密码提示问题 /// public string Question { get; set; } /// /// 密码提示问题答案 /// public string AnswerQuestion { get; set; } /// /// 允许多用户同时登录 /// public int? CheckOnLine { get; set; } /// /// 允许登陆开始时间 /// public DateTime? AllowStartTime { get; set; } /// /// 允许登陆结束时间 /// public DateTime? AllowEndTime { get; set; } /// /// 锁定开始时间 /// public DateTime? LockStartDate { get; set; } /// /// 锁定结束时间 /// public DateTime? LockEndDate { get; set; } /// /// 登陆次数 /// public int? LogOnCount { get; set; } /// /// 最后登陆时间 /// public DateTime? LastLoginTime { get; set; } /// /// 状态 /// public int Status { get; set; } /// /// 删除状态 /// public int? DeleteFlag { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 创建人 /// public string CreateName { get; set; } /// /// 编辑时间 /// public DateTime? ModifyTime { get; set; } /// /// 编辑人 /// public string ModifyName { get; set; } /// /// 联系地址 /// public string Address { get; set; } /// /// 说明 /// public string Description { get; set; } public string PostId { get; set; } } }