123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TBDM_Area
- {
- public TBDM_Area()
- {
- TPNT_Stores = new HashSet<TPNT_Store>();
- }
- public string C_Code { get; set; }
- public string C_CityCode { get; set; }
- public string C_Name { get; set; }
- public int? I_Sort { get; set; }
- public string C_Status { get; set; }
- public virtual TBDM_City C_CityCodeNavigation { get; set; }
- public virtual ICollection<TPNT_Store> TPNT_Stores { get; set; }
- }
- }
|