12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model
- {
- public class TbdmProvViewModel : BaseViewModel
- {
- public string C_Code { get; set; }
- public string C_Name { get; set; }
- public int? I_Sort { get; set; }
- public string C_Status { get; set; }
- public List<TbdmCity> Children { get; set; }
- }
- public class TbdmCity
- {
- public string C_Code { get; set; }
- public string C_ProvCode { get; set; }
- public string C_Name { get; set; }
- public int? I_Sort { get; set; }
- public string C_Status { get; set; }
- public List<TbdmArea> Children { get; set; }
- }
- public class TbdmArea
- {
- 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; }
- }
- }
|