1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- namespace Long.Common.Basedata
- {
-
-
-
- public class SystemUser
- {
-
-
-
- public long Id { get; set; }
-
-
-
- public bool Opened { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public string Password { get; set; }
-
-
-
- public string Email { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Gender { get; set; }
-
-
-
- public string Age { get; set; }
-
-
-
- public string Language { get; set; }
-
-
-
- public string City { get; set; }
-
-
-
- public string Province { get; set; }
-
-
-
- public string Country { get; set; }
-
-
-
- public string AvatarUrl { get; set; }
-
-
-
- public string Phone { get; set; }
-
-
-
- public long CreatedBy { get; set; }
-
-
-
- public DateTime CreatedOn { get; set; }
-
-
-
- public long? LastModifiedBy { get; set; }
-
-
-
- public DateTime? LastModifiedOn { get; set; }
- }
- }
|