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.
43 lines
1.0 KiB
43 lines
1.0 KiB
using System;
|
|
using GDZZ.Core;
|
|
|
|
namespace GDZZ.Application
|
|
{
|
|
/// <summary>
|
|
/// 地区表输出参数
|
|
/// </summary>
|
|
public class SysRegionDto
|
|
{
|
|
/// <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>
|
|
/// 地区父id
|
|
/// </summary>
|
|
public string region_parent_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地区级别 1-省、自治区、直辖市 2-地级市、地区、自治州、盟 3-市辖区、县级市、县
|
|
/// </summary>
|
|
public int region_level { get; set; }
|
|
|
|
}
|
|
}
|