TBDM_Area.cs 626 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TBDM_Area
  7. {
  8. public TBDM_Area()
  9. {
  10. TPNT_Stores = new HashSet<TPNT_Store>();
  11. }
  12. public string C_Code { get; set; }
  13. public string C_CityCode { get; set; }
  14. public string C_Name { get; set; }
  15. public int? I_Sort { get; set; }
  16. public string C_Status { get; set; }
  17. public virtual TBDM_City C_CityCodeNavigation { get; set; }
  18. public virtual ICollection<TPNT_Store> TPNT_Stores { get; set; }
  19. }
  20. }