TPRD_Type.cs 900 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TPRD_Type
  7. {
  8. public TPRD_Type()
  9. {
  10. TPRD_ProdSKUs = new HashSet<TPRD_ProdSKU>();
  11. }
  12. public Guid C_Code { get; set; }
  13. public string C_Name { get; set; }
  14. public int? I_IfFPP { get; set; }
  15. public int? I_Sort { get; set; }
  16. public Guid C_CreateBy { get; set; }
  17. public DateTime D_CreateOn { get; set; }
  18. public Guid? C_LastUpdatedBy { get; set; }
  19. public DateTime? D_LastUpdatedOn { get; set; }
  20. public string C_Status { get; set; }
  21. public virtual TSYS_User C_CreateByNavigation { get; set; }
  22. public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
  23. public virtual ICollection<TPRD_ProdSKU> TPRD_ProdSKUs { get; set; }
  24. }
  25. }