From 18aac78f70fad07f532748cf7e7a47a65ebcf469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=8A=B2=E6=9D=BE?= Date: Fri, 9 Aug 2019 11:04:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=85=83=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=AD=97=E5=85=B8=E5=90=8D=E7=A7=B0=E9=87=8D=E5=A4=8D=E6=A0=A1?= =?UTF-8?q?=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nezha接口文档.md | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/nezha接口文档.md b/nezha接口文档.md index 0b301b2..bbebf75 100644 --- a/nezha接口文档.md +++ b/nezha接口文档.md @@ -3260,8 +3260,42 @@ msg |string |R |  ``` { - "code": 200/xxx, - "msg": "true/false" + "code": 200, + "msg": "success" +} +``` + +##### 2.3.1.11 元数据字典type校验 + +- **接口说明:** 元数据字典type校验,不能重复,新增字典时使用 +- **接口地址:** /deteType/dicNameCheck +- **请求方式:** GET + +###### 请求参数 + +参数名称 |类型 |出现要求 |描述 +:---- |:--- |:------ |:--- +type |String |R |名称 + +示例: + +``` +GET /deteType/dicNameCheck?name=testtp +``` + +###### 返回结果 + +参数名称 |类型 |出现要求 |描述 +:---- |:--- |:------ |:--- +code |int |R |响应码,详见 附录A +msg |string |R |  + +示例: + +``` +{ + "code": 200, + "msg": "success" } ```