1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TPNT_StoreOrg
- {
- public string C_StoreCode { get; set; }
- public Guid C_OrgCode { get; set; }
- public string C_Type { get; set; }
- public Guid C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public virtual TSYS_User C_CreateByNavigation { get; set; }
- public virtual TSYS_Org C_OrgCodeNavigation { get; set; }
- public virtual TPNT_Store C_StoreCodeNavigation { get; set; }
- }
- }
|