纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.6 KiB

3 years ago
  1. using System;
  2. namespace NFine.Domain.Entity.SystemManage
  3. {
  4. public class UserEntity : IEntity<UserEntity>, ICreationAudited, IDeleteAudited, IModificationAudited
  5. {
  6. public string F_Id { get; set; }
  7. public string F_Account { get; set; }
  8. public string F_RealName { get; set; }
  9. public string F_NickName { get; set; }
  10. public string F_HeadIcon { get; set; }
  11. public bool? F_Gender { get; set; }
  12. public DateTime? F_Birthday { get; set; }
  13. public string F_MobilePhone { get; set; }
  14. public string F_Email { get; set; }
  15. public string F_WeChat { get; set; }
  16. public string F_ManagerId { get; set; }
  17. public int? F_SecurityLevel { get; set; }
  18. public string F_Signature { get; set; }
  19. public string F_OrganizeId { get; set; }
  20. public string F_DepartmentId { get; set; }
  21. public string F_RoleId { get; set; }
  22. public string F_DutyId { get; set; }
  23. public bool? F_IsAdministrator { get; set; }
  24. public int? F_SortCode { get; set; }
  25. public bool? F_DeleteMark { get; set; }
  26. public bool? F_EnabledMark { get; set; }
  27. public string F_Description { get; set; }
  28. public DateTime? F_CreatorTime { get; set; }
  29. public string F_CreatorUserId { get; set; }
  30. public DateTime? F_LastModifyTime { get; set; }
  31. public string F_LastModifyUserId { get; set; }
  32. public DateTime? F_DeleteTime { get; set; }
  33. public string F_DeleteUserId { get; set; }
  34. public string F_Location { get; set; }
  35. public string F_VenCode { get; set; }
  36. }
  37. }