1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TPRD_Type
- {
- public TPRD_Type()
- {
- TPRD_ProdSKUs = new HashSet<TPRD_ProdSKU>();
- }
- public Guid C_Code { get; set; }
- public string C_Name { get; set; }
- public int? I_IfFPP { get; set; }
- public int? I_Sort { get; set; }
- public Guid C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public Guid? C_LastUpdatedBy { get; set; }
- public DateTime? D_LastUpdatedOn { get; set; }
- public string C_Status { get; set; }
- public virtual TSYS_User C_CreateByNavigation { get; set; }
- public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
- public virtual ICollection<TPRD_ProdSKU> TPRD_ProdSKUs { get; set; }
- }
- }
|