You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
812 B
44 lines
812 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GDZZ.Application
|
|
{
|
|
/// <summary>
|
|
/// 地区表输出参数
|
|
/// </summary>
|
|
public class SysRegionOutput
|
|
{
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public string region_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地区名称
|
|
/// </summary>
|
|
public string region_name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地区缩写
|
|
/// </summary>
|
|
public string region_short_name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 行政地区编号
|
|
/// </summary>
|
|
public string region_code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 子地区
|
|
/// </summary>
|
|
public List<SysRegionOutput> children{get;set;}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|