using System; using System.Collections.Generic; #nullable disable namespace Ropin.Inspection.Model.Entities { public partial class TPNT_Store { public TPNT_Store() { TISP_ContentGroups = new HashSet<TISP_ContentGroup>(); TISP_Contents = new HashSet<TISP_Content>(); TISP_Reports = new HashSet<TISP_Report>(); TISP_Spots = new HashSet<TISP_Spot>(); TPNT_Areas = new HashSet<TPNT_Area>(); TPNT_StoreOrgs = new HashSet<TPNT_StoreOrg>(); TPRD_Logs = new HashSet<TPRD_Log>(); TPRD_Products = new HashSet<TPRD_Product>(); } public Guid C_ID { get; set; } public string C_LicenseCode { get; set; } public string C_AreaCode { get; set; } public string C_Code { get; set; } public string C_Name { get; set; } public string C_SName { get; set; } public Guid C_TypeCode { get; set; } public string C_Address { get; set; } public string C_GPS { get; set; } public int? I_Sort { get; set; } public string C_LargeScreenGPS { get; set; } public string C_LargeScreenZoom { get; set; } public string C_Logo { get; set; } public string C_Remark { 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 TBDM_Area C_AreaCodeNavigation { get; set; } public virtual TSYS_User C_CreateByNavigation { get; set; } public virtual TSYS_User C_LastUpdatedByNavigation { get; set; } public virtual TSYS_License C_LicenseCodeNavigation { get; set; } public virtual TPNT_Type C_TypeCodeNavigation { get; set; } public virtual ICollection<TISP_ContentGroup> TISP_ContentGroups { get; set; } public virtual ICollection<TISP_Content> TISP_Contents { get; set; } public virtual ICollection<TISP_Report> TISP_Reports { get; set; } public virtual ICollection<TISP_Spot> TISP_Spots { get; set; } public virtual ICollection<TPNT_Area> TPNT_Areas { get; set; } public virtual ICollection<TPNT_StoreOrg> TPNT_StoreOrgs { get; set; } public virtual ICollection<TPRD_Log> TPRD_Logs { get; set; } public virtual ICollection<TPRD_Product> TPRD_Products { get; set; } } }