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.
68 lines
1.4 KiB
68 lines
1.4 KiB
using GDZZ.Core;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace GDZZ.Application
|
|
{
|
|
/// <summary>
|
|
/// 地区表输入参数
|
|
/// </summary>
|
|
public class SysRegionInput : PageInputBase
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public virtual string region_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地区名称
|
|
/// </summary>
|
|
public virtual string region_name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地区缩写
|
|
/// </summary>
|
|
public virtual string region_short_name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 行政地区编号
|
|
/// </summary>
|
|
public virtual string region_code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地区父id
|
|
/// </summary>
|
|
public virtual string region_parent_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地区级别 1-省、自治区、直辖市 2-地级市、地区、自治州、盟 3-市辖区、县级市、县
|
|
/// </summary>
|
|
public virtual int region_level { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class SysRegionList
|
|
{
|
|
|
|
}
|
|
|
|
public class AddSysRegionInput : SysRegionInput
|
|
{
|
|
}
|
|
|
|
public class DeleteSysRegionInput
|
|
{
|
|
}
|
|
|
|
public class UpdateSysRegionInput : SysRegionInput
|
|
{
|
|
}
|
|
|
|
public class QueryeSysRegionInput : DeleteSysRegionInput
|
|
{
|
|
|
|
}
|
|
}
|