TISP_Content.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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_Content
  8. {
  9. public TISP_Content()
  10. {
  11. TISP_ContentGroupItems = new HashSet<TISP_ContentGroupItem>();
  12. TISP_RecordItems = new HashSet<TISP_RecordItem>();
  13. TISP_SpotContents = new HashSet<TISP_SpotContent>();
  14. }
  15. [Key]
  16. public Guid C_ID { get; set; } = Guid.NewGuid();
  17. public string C_StoreCode { get; set; }
  18. public string C_Name { get; set; }
  19. public string C_AlarmLevel { get; set; }
  20. public int? I_Sort { get; set; }
  21. public string C_Number { get; set; }
  22. public string C_Remark { get; set; }
  23. public Guid C_CreateBy { get; set; }
  24. public DateTime D_CreateOn { get; set; }
  25. public Guid? C_LastUpdatedBy { get; set; }
  26. public DateTime? D_LastUpdatedOn { get; set; }
  27. public string C_Status { get; set; }
  28. public virtual TSYS_User C_CreateByNavigation { get; set; }
  29. public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
  30. public virtual TPNT_Store C_StoreCodeNavigation { get; set; }
  31. public virtual ICollection<TISP_ContentGroupItem> TISP_ContentGroupItems { get; set; }
  32. public virtual ICollection<TISP_RecordItem> TISP_RecordItems { get; set; }
  33. public virtual ICollection<TISP_SpotContent> TISP_SpotContents { get; set; }
  34. }
  35. }