From 8d3f2400195b0ae746e51ed4871e2b0ab621c928 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期一, 06 五月 2024 17:24:11 +0800 Subject: [PATCH] 增加月度统计手动执行接口 --- docs/docs.go | 84 ++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 80 insertions(+), 4 deletions(-) diff --git a/docs/docs.go b/docs/docs.go index fd049ed..16ef563 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -416,6 +416,58 @@ } } }, + "/api-wms/v1/forms/doMonthStats": { + "post": { + "produces": [ + "application/json" + ], + "tags": [ + "鎶ヨ〃" + ], + "summary": "鎵嬪姩璺戞湀搴︾粺璁″簱瀛樻姤琛�", + "parameters": [ + { + "description": "鏌ヨ鍙傛暟", + "name": "object", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/request.DoMonthStats" + } + }, + { + "type": "string", + "description": "token", + "name": "Authorization", + "in": "header", + "required": true + } + ], + "responses": { + "200": { + "description": "鎴愬姛", + "schema": { + "allOf": [ + { + "$ref": "#/definitions/util.ResponseList" + }, + { + "type": "object", + "properties": { + "data": { + "type": "array", + "items": { + "$ref": "#/definitions/models.MonthStats" + } + } + } + } + ] + } + } + } + } + }, "/api-wms/v1/forms/getHistory": { "post": { "produces": [ @@ -1091,7 +1143,7 @@ "in": "body", "required": true, "schema": { - "$ref": "#/definitions/request.PageInfo" + "$ref": "#/definitions/request.GetList" } } ], @@ -3794,7 +3846,7 @@ "type": "string" }, "companyID": { - "type": "integer" + "type": "string" }, "companyName": { "type": "string" @@ -4316,7 +4368,7 @@ }, "companyID": { "description": "鍏徃ID-瀹㈡埛", - "type": "integer" + "type": "string" }, "companyName": { "description": "鍏徃鍚嶇О-瀹㈡埛鍚嶇О", @@ -4546,6 +4598,14 @@ } } }, + "request.DoMonthStats": { + "type": "object", + "properties": { + "token": { + "type": "string" + } + } + }, "request.FinishLocationProductAmount": { "type": "object", "properties": { @@ -4636,6 +4696,22 @@ "unit": { "description": "鍗曚綅", "type": "string" + } + } + }, + "request.GetList": { + "type": "object", + "properties": { + "keyword": { + "type": "string" + }, + "page": { + "description": "椤电爜", + "type": "integer" + }, + "pageSize": { + "description": "姣忛〉澶у皬", + "type": "integer" } } }, @@ -5111,7 +5187,7 @@ }, "companyID": { "description": "鍏徃ID-瀹㈡埛", - "type": "integer" + "type": "string" }, "companyName": { "description": "鍏徃鍚嶇О-瀹㈡埛鍚嶇О", -- Gitblit v1.8.0