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

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