using System; using System.Collections.Generic; namespace GDZZ.Application { /// /// 地区表输出参数 /// public class SysRegionOutput { /// /// 主键Id /// public string region_id { get; set; } /// /// 地区名称 /// public string region_name { get; set; } /// /// 地区缩写 /// public string region_short_name { get; set; } /// /// 行政地区编号 /// public string region_code { get; set; } /// /// 子地区 /// public List children{get;set;} } }