TISP_ContentGroup.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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 TISP_ContentGroup
  8. {
  9. public TISP_ContentGroup()
  10. {
  11. TISP_ContentGroupItems = new HashSet<TISP_ContentGroupItem>();
  12. }
  13. [Key]
  14. public Guid G_ID { get; set; }
  15. public string C_StoreCode { get; set; }
  16. public string C_Name { get; set; }
  17. public int? I_Sort { get; set; }
  18. public string C_Remark { get; set; }
  19. public int I_Type { get; set; }
  20. public string C_PatrolItem { get; set; }
  21. public Guid G_CreateBy { get; set; }
  22. public DateTime D_CreateOn { get; set; }
  23. public Guid? G_LastUpdatedBy { get; set; }
  24. public DateTime? D_LastUpdatedOn { get; set; }
  25. public string C_Status { get; set; }
  26. public virtual TPNT_Store C_StoreCodeNavigation { get; set; }
  27. public virtual TSYS_User G_CreateByNavigation { get; set; }
  28. public virtual TSYS_User G_LastUpdatedByNavigation { get; set; }
  29. public virtual ICollection<TISP_ContentGroupItem> TISP_ContentGroupItems { get; set; }
  30. }
  31. }