UNIVPLMDataIntegration/Web/src/api-services/models/tianditu-input.ts

55 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET 通用权限开发平台
* 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
*
* 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;
}