namespace Long.Common.Basedata { /// /// 系统用户 /// public class User { /// /// 内码 /// public long Id { get; set; } /// /// 电子邮箱 /// public string Email { get; set; } = string.Empty; /// /// 手机号 /// public string Phone { get; set; } = string.Empty; /// /// 登录密码 /// public string Password { get; set; } = string.Empty; /// /// 用户名 /// public string UserName { get; set; } = string.Empty; /// /// 是否启用 /// public bool Opened { get; set; } /// /// 是否激活 /// public bool Activited { get; set; } /// /// 激活码 /// public string ActivationCode { get; set; } = string.Empty; /// /// 激活码创建时间 /// public DateTime? ActivationCodeOn { get; set; } /// /// 性别 /// public string Gender { get; set; } = string.Empty; /// /// 年龄 /// public string Age { get; set; } = string.Empty; /// /// 语言 /// public string Language { get; set; } = string.Empty; /// /// 城市 /// public string City { get; set; } = string.Empty; /// /// 省份 /// public string Province { get; set; } = string.Empty; /// /// 国家 /// public string Country { get; set; } = string.Empty; /// /// 头像 /// public string AvatarUrl { get; set; } = string.Empty; /// /// 推广码 /// public string PromotionCode { get; set; } = string.Empty; /// /// 上级推广码 /// public string ParentPromotionCode { get; set; } = string.Empty; /// /// 推广层级 /// public int? PromotionLevel { get; set; } /// /// 创建人 /// public long CreatedBy { get; set; } /// /// 创建时间 /// public DateTime CreatedOn { get; set; } /// /// 最后修改人 /// public long? LastModifiedBy { get; set; } /// /// 最后修改时间 /// public DateTime? LastModifiedOn { get; set; } } }