/* tslint:disable */ /* eslint-disable */ /** * Admin.NET 通用权限开发平台 * 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。
👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任! * * OpenAPI spec version: 1.0.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * * * @export * @interface TiandituInput */ export interface TiandituInput { /** * 规则:只支持单个关键词语搜索 关键词支持:行政区划名称、行政区划编码 例如,keyword='北京' 或 keyword = '156110000' 说明:仅行政区划名称支持模糊查询 注:keyword只有一个字符时,将只返回suggestion字段值,不返回district字段值 * * @type {string} * @memberof TiandituInput */ keyword?: string | null; /** * 规则:设置显示下级行政区级数(行政区级别包括:国家、省/直辖市、市、区/县多级数据 可选值:0、1、2、3 0:不返回下级行政区 1:返回下一级行政区 2:返回下两级行政区 3:返回下三级行政区 需要在此特殊说明,目前部分城市和省直辖县因为没有区县的概念,故在省级下方直接显示区县。 例如:河南-济源 * * @type {string} * @memberof TiandituInput */ childLevel?: string | null; /** * 是否需要轮廓数据 可选值:true、false true:返回轮廓数据 false:不返回轮廓数据 * * @type {boolean} * @memberof TiandituInput */ extensions?: boolean; /** * 密钥 * * @type {string} * @memberof TiandituInput */ tk?: string | null; }