easyopen_template.markdownDoc.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyopen-mini Show documentation
Show all versions of easyopen-mini Show documentation
easyopen mini版,保留基本签名校验,文档功能。https://gitee.com/durcframework/easyopen
#set($jin="#")
$jin ${docItem.description}
---
#if("$!{docItem.remark}" != "")
${docItem.remark}
#end
接口名
${docItem.name}
版本号
${docItem.version}
**请求参数**
名称
类型
是否必须
示例值
描述
#foreach($paramDefinition in ${docItem.paramDefinitions})
${paramDefinition.paramMarkdownHtml}
#end
**参数示例**
```json
${docItem.paramData}
```
**返回结果**
名称
类型
描述
code
string
状态值,"0"表示成功,其它都是失败
msg
string
错误信息,出错时显示
#if(${docItem.singleReturn})
data
${docItem.apiDocReturnDefinition.dataType}
${docItem.apiDocReturnDefinition.description}。#if(${docItem.apiDocReturnDefinition.example} != "")示例值:${docItem.apiDocReturnDefinition.example}#end
#else
data
object
返回的数据,没有则返回{}
名称
类型
示例值
描述
#foreach($resultDefinition in ${docItem.resultDefinitions})
${resultDefinition.resultHtml}
#end
#end
**返回示例**
```json
${docItem.resultData}
```