{ "openapi": "3.0.1", "info": { "title": "默认模块", "description": "", "version": "1.0.0" }, "tags": [], "paths": { "/google/getCode": { "post": { "summary": "获取二维码", "deprecated": false, "description": "", "tags": [], "parameters": [], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RString" }, "example": { "code": 0, "msg": "", "data": "" } } }, "headers": {} } }, "security": [ { "bearer": [] } ] } }, "/google/binding": { "get": { "summary": "绑定验证码", "deprecated": false, "description": "", "tags": [], "parameters": [ { "name": "code", "in": "query", "description": "", "required": false, "example": 487722, "schema": { "type": "integer" } } ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "example": { "code": 0, "msg": "", "data": "" } } }, "headers": {} } }, "security": [ { "bearer": [] } ] } }, "/google/unbinding": { "post": { "summary": "解绑验证码", "deprecated": false, "description": "", "tags": [], "parameters": [], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/GoogleUnbindingRO", "description": "" } } } }, "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/R", "description": "响应信息主体" }, "example": { "code": 0, "msg": "", "data": "" } } }, "headers": {} } }, "security": [ { "bearer": [] } ] } } }, "components": { "schemas": { "RString": { "type": "object", "properties": { "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "string", "description": "数据" } } }, "GoogleUnbindingRO": { "type": "object", "properties": { "pwd": { "type": "string", "description": "" } }, "required": [ "pwd" ] }, "R": { "type": "object", "properties": { "ok": { "type": "boolean" }, "code": { "type": "integer", "description": "返回标记:成功标记=0,失败标记=1" }, "msg": { "type": "string", "description": "返回信息" }, "data": { "type": "object", "properties": {}, "description": "数据" } } } }, "securitySchemes": { "bearer": { "type": "http", "scheme": "bearer" } } }, "servers": [], "security": [] }