easyopen_template.docPdf.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyopen Show documentation
Show all versions of easyopen Show documentation
一个简单易用的接口开放平台,平台封装了常用的参数校验、结果返回等功能,开发者只需实现业务代码即可。https://gitee.com/durcframework/easyopen
文档
${docRemark}
#foreach($apiModule in $apiModules)
#set($moduleIndex = ${velocityCount})
${moduleIndex}. ${apiModule.name}
#foreach($docItem in ${apiModule.moduleItems})
${moduleIndex}.${velocityCount} ${docItem.description}${docItem.version}
${docItem.remark}
接口名(${API_NAME}):${docItem.name}
版本号(${VERSION_NAME}):${docItem.version}
请求参数
名称
类型
是否必须
示例值
描述
#foreach($paramDefinition in ${docItem.paramDefinitions})
${paramDefinition.getParamHtmlPdf(${docItem.nameVersion})}
#end
返回结果
#if(${docItem.customWrapper})
名称
类型
示例值
描述
#foreach($resultDefinition in ${docItem.resultDefinitions})
${resultDefinition.resultHtml}
#end
#else
名称
类型
描述
${code_name} string ${code_description}
${msg_name} string ${msg_description}
${data_name} object ${data_description}
名称
类型
示例值
描述
#foreach($resultDefinition in ${docItem.resultDefinitions})
${resultDefinition.resultHtml}
#end
#end
#end
#end