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

4 days ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Domain._03_Entity.SystemManage
  7. {
  8. public class OrganizeByVendorEntity : IEntity<OrganizeByVendorEntity>, ICreationAudited, IDeleteAudited, IModificationAudited
  9. {
  10. public string F_Id { get; set; }
  11. public string F_ParentId { get; set; }
  12. public int? F_Layers { get; set; }
  13. public string F_EnCode { get; set; }
  14. public string F_FullName { get; set; }
  15. public string F_ShortName { get; set; }
  16. public string F_CategoryId { get; set; }
  17. public string F_ManagerId { get; set; }
  18. public string F_TelePhone { get; set; }
  19. public string F_MobilePhone { get; set; }
  20. public string F_WeChat { get; set; }
  21. public string F_Fax { get; set; }
  22. public string F_Email { get; set; }
  23. public string F_AreaId { get; set; }
  24. public string F_Address { get; set; }
  25. public bool? F_AllowEdit { get; set; }
  26. public bool? F_AllowDelete { get; set; }
  27. public int? F_SortCode { get; set; }
  28. public bool? F_DeleteMark { get; set; }
  29. public bool? F_EnabledMark { get; set; }
  30. public string F_Description { get; set; }
  31. public DateTime? F_CreatorTime { get; set; }
  32. public string F_CreatorUserId { get; set; }
  33. public DateTime? F_LastModifyTime { get; set; }
  34. public string F_LastModifyUserId { get; set; }
  35. public DateTime? F_DeleteTime { get; set; }
  36. public string F_DeleteUserId { get; set; }
  37. }
  38. }