using Hncore.Infrastructure.DDD; using System; namespace Hncore.Pass.Vpn.Domain { public partial class UserEntity : EntityWithTime, ITenant { /// /// ID /// public int TenantId { get; set; } /// /// 管理员登录名[16 /// public string LoginCode { get; set; } /// /// 登录密码[20] /// public string Password { get; set; } public int discount_id { get; set; } /// /// 微信昵称 /// public string Name { get; set; } /// /// 微信头像 /// public string Phone { get; set; } /// /// 注册来源 /// public string Profile { get; set; } /// /// 状态 /// public int Enabled { get; set; } = 1; /// /// 头像地址[30 /// public string PhotoUrl { get; set; } /// /// 是否主管理员权限 /// public DateTime? LastLoginDate { get; set; } = DateTime.Now; public string pay_time { get; set; } public int Sex { get; set; } //1:管理员添加 2:自己注册 3:来自淘宝 public int CreateType { get; set; } public int ProductAccountCount { get; set; } public int ExpiredProductAccountCount { get; set; } public decimal RestAmount { get; set; } public decimal ConsumeAmount { get; set; } public string Remark { get; set; } public string Wx { get; set; } public string QQ { get; set; } public string Email { get; set; } public string TaoBao { get; set; } public string WangWang { get; set; } public int? TestCountLimit { get; set; } = 0; public int? UseTestCount { get; set; } = 0; public int? ManagerId { get; set; } = 0; public string ManagerName { get; set; } public int is_verify { get; set; } public int agent_id {get; set;} public string apikey {get; set;} public string id_code {get; set;} } }