TPNT_Area.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TPNT_Area
  7. {
  8. public TPNT_Area()
  9. {
  10. TISP_Spots = new HashSet<TISP_Spot>();
  11. TPRD_Products = new HashSet<TPRD_Product>();
  12. }
  13. public string C_StoreCode { get; set; }
  14. public string C_Code { get; set; }
  15. public string C_Name { get; set; }
  16. public string C_SName { get; set; }
  17. public string C_ImageUrl { 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 TPNT_Store C_StoreCodeNavigation { get; set; }
  28. public virtual ICollection<TISP_Spot> TISP_Spots { get; set; }
  29. public virtual ICollection<TPRD_Product> TPRD_Products { get; set; }
  30. }
  31. }