TbdProvViewModel.cs 1012 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model
  7. {
  8. public class TbdmProvViewModel : BaseViewModel
  9. {
  10. public string C_Code { get; set; }
  11. public string C_Name { get; set; }
  12. public int? I_Sort { get; set; }
  13. public string C_Status { get; set; }
  14. public List<TbdmCity> Children { get; set; }
  15. }
  16. public class TbdmCity
  17. {
  18. public string C_Code { get; set; }
  19. public string C_ProvCode { get; set; }
  20. public string C_Name { get; set; }
  21. public int? I_Sort { get; set; }
  22. public string C_Status { get; set; }
  23. public List<TbdmArea> Children { get; set; }
  24. }
  25. public class TbdmArea
  26. {
  27. public string C_Code { get; set; }
  28. public string C_CityCode { get; set; }
  29. public string C_Name { get; set; }
  30. public int? I_Sort { get; set; }
  31. public string C_Status { get; set; }
  32. }
  33. }