using Hncore.Infrastructure.DDD; using System; namespace Hncore.Pass.BaseInfo.Models { public partial class Manager : EntityWithTime, ITenant { /// /// 所属物业ID /// public int TenantId { get; set; } /// /// 更新人ID /// public int UpdatorId { get; set; } /// /// 创建人ID /// public int CreatorId { get; set; } /// /// 管理员登录名[16 /// public string LoginCode { get; set; } /// /// 登录密码[20] /// public string Password { get; set; } /// /// 管理员角色 /// public int RoleId { get; set; } /// /// 状态 /// public int State { get; set; } /// /// 头像地址[30 /// public string PhotoUrl { get; set; } /// /// 微信openid[50] /// public string WxOpenid { get; set; } /// /// 微信昵称 /// public string WxNickName { get; set; } /// /// 微信头像 /// public string WxImage { get; set; } /// /// 注册来源 /// public int Source { get; set; } /// /// 系统ID /// public int systemid { get; set; } /// /// 管理员手机号 /// public string Phone { get; set; } /// /// 账号code /// public string ManagerCode { get; set; } /// /// 管理员姓名 /// public string RealName { get; set; } /// /// 电子邮箱 /// public string Email { get; set; } /// /// 是否主管理员权限 /// public int IsRoot { get; set; } public int SystemId { get; set; } public string Tags { get; set; } } }