using System; namespace GxPress.Result.User { /// /// 用户详情 /// public class UserDetail { /// /// 用户ID /// public int Id { get; set; } /// /// 手机 /// public string Phone { get; set; } /// /// 昵称 /// public string Nick { get; set; } /// /// 姓名 /// public string Name { get; set; } /// /// 头像地址 /// public string AvatarUrl { get; set; } /// /// 性别 /// Gender /// public string Gender { get; set; } /// /// 角色id /// public int RoleId { get; set; } /// /// 部门id /// public int DepartmentId { get; set; } /// /// 单位名称 /// public string DepartmentName { get; set; } /// /// 职位 /// public string Position { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// 签名 /// public string Signature { get; set; } /// /// 自我介绍 /// public string Description { get; set; } /// /// 是否是领导 /// public bool IsLeader { get; set; } /// /// 入职时间 /// public DateTime EntryDataTime { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 是否接收私信 /// public bool IsPrivateLetter { get; set; } /// /// 是否接收通知 /// public bool IsNotice { get; set; } /// /// 是否接收回复 /// public bool IsReply { get; set; } /// /// 是否静音 /// public bool IsMute { get; set; } /// /// 是否震动 /// public bool IsShake { get; set; } /// /// 环信ID /// public string ImId { get; set; } /// /// 是否黑名单 /// public bool IsBlack { get; set; } /// /// 二维码 /// public string QRCoder { get; set; } /// /// 是否禁用 /// /// public bool IsDisable { get; set; } /// /// 禁用到期时间 /// /// public string DisableTime { get; set; } /// /// 微信唯一标示码 /// /// public string OpenId { get; set; } /// /// 是否VIP /// /// public bool IsVip { get; set; } /// /// 会员类型 月卡 季卡 年卡 /// /// public int TypeId { get; set; } /// /// 终端 pc android ios /// /// public int Port { get; set; } /// /// 会员开始时间 /// /// public DateTime BeginTime { get; set; } /// /// 会员结束时间 /// /// public DateTime EndTime { get; set; } /// /// 累计价格 /// /// public decimal AccumulativePrice { get; set; } /// /// 是否自动续费 /// /// public bool IsRenewal { get; set; } /// /// 备注 /// /// public string Remark { get; set; } /// /// 注册时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 1 自动续费 2 在费 3 到期 /// /// public int VipStatus { get; set; } /// /// 续费次数 /// /// public int RenewalCount { get; set; } /// /// 是否冻结 /// /// public bool IsFreeze { get; set; } } }