TSYS_LicenseType.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TSYS_LicenseType
  7. {
  8. public TSYS_LicenseType()
  9. {
  10. TSYS_LicenseTypePrivs = new HashSet<TSYS_LicenseTypePriv>();
  11. TSYS_Licenses = new HashSet<TSYS_License>();
  12. }
  13. public string C_Code { get; set; }
  14. public string C_Name { get; set; }
  15. public int I_MaxMemberQty { get; set; }
  16. public int I_MaxSpotQty { get; set; }
  17. public int I_MaxFileSize { get; set; }
  18. public int? I_Sort { get; set; }
  19. public string C_Remark { get; set; }
  20. public Guid C_CreateBy { get; set; }
  21. public DateTime D_CreateOn { get; set; }
  22. public Guid? C_LastUpdatedBy { get; set; }
  23. public DateTime? D_LastUpdatedOn { get; set; }
  24. public string C_Status { get; set; }
  25. public virtual TSYS_User C_CreateByNavigation { get; set; }
  26. public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
  27. public virtual ICollection<TSYS_LicenseTypePriv> TSYS_LicenseTypePrivs { get; set; }
  28. public virtual ICollection<TSYS_License> TSYS_Licenses { get; set; }
  29. }
  30. }