TSYS_Priv.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TSYS_Priv
  7. {
  8. public TSYS_Priv()
  9. {
  10. InverseC_ParentCodeNavigation = new HashSet<TSYS_Priv>();
  11. TSYS_LicenseTypePrivs = new HashSet<TSYS_LicenseTypePriv>();
  12. TSYS_RolePrivs = new HashSet<TSYS_RolePriv>();
  13. }
  14. public string C_Code { get; set; }
  15. public string C_ParentCode { get; set; }
  16. public string C_Module { get; set; }
  17. public string C_Type { get; set; }
  18. public string C_Name { get; set; }
  19. public int? I_Sort { get; set; }
  20. public string C_ImageUrl { get; set; }
  21. public string C_PageUrl { get; set; }
  22. public string C_Remark { get; set; }
  23. public string C_Status { get; set; }
  24. public virtual TSYS_Priv C_ParentCodeNavigation { get; set; }
  25. public virtual ICollection<TSYS_Priv> InverseC_ParentCodeNavigation { get; set; }
  26. public virtual ICollection<TSYS_LicenseTypePriv> TSYS_LicenseTypePrivs { get; set; }
  27. public virtual ICollection<TSYS_RolePriv> TSYS_RolePrivs { get; set; }
  28. }
  29. }