TPRD_ProdSKU.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TPRD_ProdSKU
  7. {
  8. public TPRD_ProdSKU()
  9. {
  10. TPRD_Products = new HashSet<TPRD_Product>();
  11. }
  12. public string C_SKUCode { get; set; }
  13. public Guid? C_TypeCode { get; set; }
  14. public string C_Name { get; set; }
  15. public string C_Spec { get; set; }
  16. public string C_Brand { get; set; }
  17. public string C_Vender { get; set; }
  18. public string C_ProdArea { get; set; }
  19. public string C_Unit { get; set; }
  20. public string C_ImagePath { get; set; }
  21. public string C_IconPath { get; set; }
  22. public int I_MinStock { get; set; }
  23. public int? I_ValiDays { get; set; }
  24. public int? I_AlarmDays { get; set; }
  25. public int? I_Sort { get; set; }
  26. public string C_Remark { get; set; }
  27. public Guid C_CreateBy { get; set; }
  28. public DateTime D_CreateOn { get; set; }
  29. public Guid? C_LastUpdatedBy { get; set; }
  30. public DateTime? D_LastUpdatedOn { get; set; }
  31. public string C_Status { get; set; }
  32. public virtual TSYS_User C_CreateByNavigation { get; set; }
  33. public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
  34. public virtual TPRD_Type C_TypeCodeNavigation { get; set; }
  35. public virtual ICollection<TPRD_Product> TPRD_Products { get; set; }
  36. }
  37. }