123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- 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; }
- }
- }
|