TPNT_StoreOrg.cs 602 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TPNT_StoreOrg
  7. {
  8. public string C_StoreCode { get; set; }
  9. public Guid C_OrgCode { get; set; }
  10. public string C_Type { get; set; }
  11. public Guid C_CreateBy { get; set; }
  12. public DateTime D_CreateOn { get; set; }
  13. public virtual TSYS_User C_CreateByNavigation { get; set; }
  14. public virtual TSYS_Org C_OrgCodeNavigation { get; set; }
  15. public virtual TPNT_Store C_StoreCodeNavigation { get; set; }
  16. }
  17. }