Skip to main content
Version: 3.2

Interface 接口

结构声明

interface Interface {
"concept": "Interface" | "AuthInterface", // 产品概念
"name": string, // 接口名称
"originLogicName": string, // 导出的来源
"path": string, // 接口路径
"method": "GET" | "POST" | "PUT" | "DELETE", // 接口方法
"description": string, // 接口描述
"params": Array<InterfaceParam>, // 接口参数列表
"returns": Array<Return>, // 输出参数列表
"validation": BindAttribute, // 验证规则
}

示例

简单示例

{
"concept": "Interface",
"name": "GetUserList",
"originLogicName": "logic1",
"path": "GetUserList",
"method": "GET",
"description": "这是一个接口",
"params": [],
"returns": [],
"validation": null
}

ScopeOf

{}