TSYS_License.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. #nullable disable
  5. namespace Ropin.Inspection.Model.Entities
  6. {
  7. public partial class TSYS_License
  8. {
  9. public TSYS_License()
  10. {
  11. TPNT_Stores = new HashSet<TPNT_Store>();
  12. TSYS_Orgs = new HashSet<TSYS_Org>();
  13. TSYS_Roles = new HashSet<TSYS_Role>();
  14. TSYS_Users = new HashSet<TSYS_User>();
  15. }
  16. [Key]
  17. public Guid C_ID { get; set; }
  18. public string C_TypeCode { get; set; }
  19. public string C_Code { get; set; }
  20. public string C_Name { get; set; }
  21. public int I_MemberQty { get; set; }
  22. public int I_SpotQty { get; set; }
  23. public string C_FilePath { get; set; }
  24. public DateTime D_StartDate { get; set; }
  25. public DateTime D_EndDate { get; set; }
  26. public int? I_Sort { get; set; }
  27. public string C_Remark { get; set; }
  28. public Guid C_CreateBy { get; set; }
  29. public DateTime D_CreateOn { get; set; }
  30. public Guid? C_LastUpdatedBy { get; set; }
  31. public DateTime? D_LastUpdatedOn { get; set; }
  32. public string C_Status { get; set; }
  33. public virtual TSYS_User C_CreateByNavigation { get; set; }
  34. public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
  35. public virtual TSYS_LicenseType C_TypeCodeNavigation { get; set; }
  36. public virtual ICollection<TPNT_Store> TPNT_Stores { get; set; }
  37. public virtual ICollection<TSYS_Org> TSYS_Orgs { get; set; }
  38. public virtual ICollection<TSYS_Role> TSYS_Roles { get; set; }
  39. public virtual ICollection<TSYS_User> TSYS_Users { get; set; }
  40. }
  41. }