From ac5468a5ce91c4a9ba7c9610c6bef78e24bf6dce Mon Sep 17 00:00:00 2001 From: wangpengfei <274878379@qq.com> Date: 星期一, 10 七月 2023 11:14:18 +0800 Subject: [PATCH] add --- docs/docs.go | 183 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 182 insertions(+), 1 deletions(-) diff --git a/docs/docs.go b/docs/docs.go index 4200359..e2eca69 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -1580,6 +1580,125 @@ } } }, + "/api/possibility/add": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "Possibility" + ], + "summary": "娣诲姞鍟嗘満鍙兘鎬�", + "parameters": [ + { + "description": "鏌ヨ鍙傛暟", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/request.AddPossibility" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/contextx.Response" + } + } + } + } + }, + "/api/possibility/delete/{id}": { + "delete": { + "produces": [ + "application/json" + ], + "tags": [ + "Possibility" + ], + "summary": "鍒犻櫎鍟嗘満鍙兘鎬�", + "parameters": [ + { + "type": "integer", + "description": "鏌ヨ鍙傛暟", + "name": "id", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/contextx.Response" + } + } + } + } + }, + "/api/possibility/list": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "Possibility" + ], + "summary": "鍟嗘満鍙兘鎬у垪琛�", + "responses": { + "200": { + "description": "OK", + "schema": { + "allOf": [ + { + "$ref": "#/definitions/contextx.Response" + }, + { + "type": "object", + "properties": { + "data": { + "$ref": "#/definitions/response.PossibilityResponse" + } + } + } + ] + } + } + } + } + }, + "/api/possibility/update": { + "put": { + "produces": [ + "application/json" + ], + "tags": [ + "Possibility" + ], + "summary": "鏇存柊鍟嗘満鍙兘鎬�", + "parameters": [ + { + "description": "鏌ヨ鍙傛暟", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/request.UpdatePossibilities" + } + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/contextx.Response" + } + } + } + } + }, "/api/province/add": { "post": { "produces": [ @@ -3444,6 +3563,17 @@ } } }, + "model.Possibility": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + }, "model.Province": { "type": "object", "properties": { @@ -3566,7 +3696,7 @@ "pain_points": { "type": "string" }, - "possibilities": { + "possibilities_id": { "type": "integer" }, "process": { @@ -4029,6 +4159,17 @@ } }, "request.AddIndustry": { + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string" + } + } + }, + "request.AddPossibility": { "type": "object", "required": [ "name" @@ -4961,6 +5102,35 @@ } } }, + "request.UpdatePossibilities": { + "type": "object", + "required": [ + "possibilities" + ], + "properties": { + "possibilities": { + "type": "array", + "items": { + "$ref": "#/definitions/request.UpdatePossibility" + } + } + } + }, + "request.UpdatePossibility": { + "type": "object", + "required": [ + "id", + "name" + ], + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + } + } + }, "request.UpdateProvince": { "type": "object", "properties": { @@ -5467,6 +5637,17 @@ } } }, + "response.PossibilityResponse": { + "type": "object", + "properties": { + "list": { + "type": "array", + "items": { + "$ref": "#/definitions/model.Possibility" + } + } + } + }, "response.ProvinceResponse": { "type": "object", "properties": { -- Gitblit v1.8.0