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_Contents = new HashSet(); TISP_Reports = new HashSet(); TISP_Spots = new HashSet(); TPNT_Areas = new HashSet(); TPNT_StoreOrgs = new HashSet(); TPRD_Logs = new HashSet(); TPRD_Products = new HashSet(); } 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_ContentGroups { get; set; } public virtual ICollection TISP_Contents { get; set; } public virtual ICollection TISP_Reports { get; set; } public virtual ICollection TISP_Spots { get; set; } public virtual ICollection TPNT_Areas { get; set; } public virtual ICollection TPNT_StoreOrgs { get; set; } public virtual ICollection TPRD_Logs { get; set; } public virtual ICollection TPRD_Products { get; set; } } }