using System; using System.Collections.Generic; using System.Text; namespace JiaZhiQuan.Common.Region { public class RegionModel { public string Code { get; set; } public string Name { get; set; } public string Alias { get; set; } public string PY { get; set; } public List Children { get; set; } = new List(); } }