纽威
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.

32 lines
1.3 KiB

3 years ago
3 years ago
3 years ago
  1. using System;
  2. namespace NFine.Domain.Entity.SystemManage
  3. {
  4. public class ModuleEntity : IEntity<ModuleEntity>, ICreationAudited, IModificationAudited, IDeleteAudited
  5. {
  6. public string F_Id { get; set; }
  7. public string F_ParentId { get; set; }
  8. public int? F_Layers { get; set; }
  9. public string F_EnCode { get; set; }
  10. public string F_FullName { get; set; }
  11. public string F_Icon { get; set; }
  12. public string F_UrlAddress { get; set; }
  13. public string F_Target { get; set; }
  14. public bool? F_IsMenu { get; set; }
  15. public bool? F_IsExpand { get; set; }
  16. public bool? F_IsPublic { get; set; }
  17. public bool? F_AllowEdit { get; set; }
  18. public bool? F_AllowDelete { get; set; }
  19. public int? F_SortCode { get; set; }
  20. public bool? F_DeleteMark { get; set; }
  21. public bool? F_EnabledMark { get; set; }
  22. public string F_Description { get; set; }
  23. public DateTime? F_CreatorTime { get; set; }
  24. public string F_CreatorUserId { get; set; }
  25. public DateTime? F_LastModifyTime { get; set; }
  26. public string F_LastModifyUserId { get; set; }
  27. public DateTime? F_DeleteTime { get; set; }
  28. public string F_DeleteUserId { get; set; }
  29. public string systems { get; set; }
  30. }
  31. }