From 25fcc66e4c844306489dcfec6880004157a2dff7 Mon Sep 17 00:00:00 2001
From: wangpengfei <274878379@qq.com>
Date: 星期四, 20 七月 2023 17:24:47 +0800
Subject: [PATCH] fix
---
docs/docs.go | 685 ++++++++++++++++++++++++++++++++++++++++++++-------------
1 files changed, 528 insertions(+), 157 deletions(-)
diff --git a/docs/docs.go b/docs/docs.go
index 85c7809..6d6eace 100644
--- a/docs/docs.go
+++ b/docs/docs.go
@@ -3995,13 +3995,25 @@
"200": {
"description": "OK",
"schema": {
- "$ref": "#/definitions/contextx.Response"
+ "allOf": [
+ {
+ "$ref": "#/definitions/contextx.Response"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "data": {
+ "$ref": "#/definitions/response.SalesReturnResponse"
+ }
+ }
+ }
+ ]
}
}
}
}
},
- "/api/salesReturn/update/{id}": {
+ "/api/salesReturn/update": {
"put": {
"produces": [
"application/json"
@@ -4137,6 +4149,125 @@
"required": true,
"schema": {
"$ref": "#/definitions/request.UpdateSalesSourcesList"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "schema": {
+ "$ref": "#/definitions/contextx.Response"
+ }
+ }
+ }
+ }
+ },
+ "/api/satisfaction/add": {
+ "post": {
+ "produces": [
+ "application/json"
+ ],
+ "tags": [
+ "Satisfaction"
+ ],
+ "summary": "娣诲姞婊℃剰搴�",
+ "parameters": [
+ {
+ "description": "鏌ヨ鍙傛暟",
+ "name": "object",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/request.AddSatisfaction"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "schema": {
+ "$ref": "#/definitions/contextx.Response"
+ }
+ }
+ }
+ }
+ },
+ "/api/satisfaction/delete/{id}": {
+ "delete": {
+ "produces": [
+ "application/json"
+ ],
+ "tags": [
+ "Satisfaction"
+ ],
+ "summary": "鍒犻櫎婊℃剰搴�",
+ "parameters": [
+ {
+ "type": "integer",
+ "description": "鏌ヨ鍙傛暟",
+ "name": "id",
+ "in": "path",
+ "required": true
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "schema": {
+ "$ref": "#/definitions/contextx.Response"
+ }
+ }
+ }
+ }
+ },
+ "/api/satisfaction/list": {
+ "get": {
+ "produces": [
+ "application/json"
+ ],
+ "tags": [
+ "Satisfaction"
+ ],
+ "summary": "婊℃剰搴﹀垪琛�",
+ "responses": {
+ "200": {
+ "description": "OK",
+ "schema": {
+ "allOf": [
+ {
+ "$ref": "#/definitions/contextx.Response"
+ },
+ {
+ "type": "object",
+ "properties": {
+ "data": {
+ "$ref": "#/definitions/response.SatisfactionResponse"
+ }
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "/api/satisfaction/update": {
+ "put": {
+ "produces": [
+ "application/json"
+ ],
+ "tags": [
+ "Satisfaction"
+ ],
+ "summary": "鏇存柊婊℃剰搴�",
+ "parameters": [
+ {
+ "description": "鏌ヨ鍙傛暟",
+ "name": "object",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/request.UpdateSatisfactions"
}
}
],
@@ -4985,6 +5116,36 @@
}
}
}
+ },
+ "/api/vetting/add": {
+ "post": {
+ "produces": [
+ "application/json"
+ ],
+ "tags": [
+ "Vetting"
+ ],
+ "summary": "娣诲姞瀹℃壒",
+ "parameters": [
+ {
+ "description": "鏌ヨ鍙傛暟",
+ "name": "object",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/request.AddVetting"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "schema": {
+ "$ref": "#/definitions/contextx.Response"
+ }
+ }
+ }
+ }
}
},
"definitions": {
@@ -5588,6 +5749,9 @@
"model.MasterOrder": {
"type": "object",
"properties": {
+ "client": {
+ "$ref": "#/definitions/model.Client"
+ },
"client_id": {
"type": "integer"
},
@@ -5852,6 +6016,9 @@
"currency": {
"$ref": "#/definitions/constvar.CurrencyType"
},
+ "detail_address": {
+ "type": "string"
+ },
"disadvantages": {
"type": "string"
},
@@ -5905,6 +6072,9 @@
},
"regular_customers_id": {
"type": "integer"
+ },
+ "remark": {
+ "type": "string"
},
"sale_stage_id": {
"type": "integer"
@@ -5962,6 +6132,9 @@
},
"addressee": {
"type": "string"
+ },
+ "client": {
+ "$ref": "#/definitions/model.Client"
},
"clientId": {
"type": "integer"
@@ -6110,7 +6283,53 @@
}
}
},
+ "model.SalesReturn": {
+ "type": "object",
+ "properties": {
+ "clientId": {
+ "type": "integer"
+ },
+ "id": {
+ "type": "integer"
+ },
+ "memberId": {
+ "type": "integer"
+ },
+ "number": {
+ "type": "string"
+ },
+ "products": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/model.Product"
+ }
+ },
+ "reason": {
+ "type": "string"
+ },
+ "repository": {
+ "type": "string"
+ },
+ "returnDate": {
+ "type": "string"
+ },
+ "status": {
+ "type": "integer"
+ }
+ }
+ },
"model.SalesSources": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ }
+ }
+ },
+ "model.Satisfaction": {
"type": "object",
"properties": {
"id": {
@@ -6259,6 +6478,9 @@
"model.SubOrder": {
"type": "object",
"properties": {
+ "client": {
+ "$ref": "#/definitions/model.Client"
+ },
"clientId": {
"type": "integer"
},
@@ -6302,7 +6524,7 @@
"type": "string"
},
"id": {
- "type": "string"
+ "type": "integer"
},
"menuIds": {
"description": "鑿滃崟ID鍒楄〃",
@@ -6327,6 +6549,9 @@
"$ref": "#/definitions/constvar.UserType"
},
"username": {
+ "type": "string"
+ },
+ "uuid": {
"type": "string"
}
}
@@ -6672,7 +6897,7 @@
"type": "integer"
},
"money": {
- "type": "string"
+ "type": "number"
},
"number": {
"type": "string"
@@ -6835,6 +7060,9 @@
"currency": {
"type": "integer"
},
+ "detail_address": {
+ "type": "string"
+ },
"disadvantages": {
"type": "string"
},
@@ -6879,6 +7107,9 @@
},
"regular_customers_id": {
"type": "integer"
+ },
+ "remark": {
+ "type": "string"
},
"sale_stage_id": {
"type": "integer"
@@ -7009,6 +7240,17 @@
}
}
},
+ "request.AddSatisfaction": {
+ "type": "object",
+ "required": [
+ "name"
+ ],
+ "properties": {
+ "name": {
+ "type": "string"
+ }
+ }
+ },
"request.AddServiceContract": {
"type": "object",
"properties": {
@@ -7068,20 +7310,102 @@
"request.AddServiceFeeManage": {
"type": "object",
"properties": {
- "client_id": {
+ "business_scope": {
+ "description": "缁忚惀鑼冨洿",
+ "type": "string"
+ },
+ "city_id": {
+ "type": "integer"
+ },
+ "client_level_id": {
+ "description": "瀹㈡埛绛夌骇ID",
+ "type": "integer"
+ },
+ "client_origin_id": {
+ "description": "瀹㈡埛鏉ユ簮ID",
+ "type": "integer"
+ },
+ "client_status_id": {
+ "description": "瀹㈡埛鐘舵�両D",
+ "type": "integer"
+ },
+ "client_type_id": {
+ "description": "瀹㈡埛绫诲瀷ID",
+ "type": "integer"
+ },
+ "contact": {
+ "$ref": "#/definitions/request.Contact"
+ },
+ "country_id": {
+ "type": "integer"
+ },
+ "detail_address": {
+ "description": "璇︾粏鍦板潃",
+ "type": "string"
+ },
+ "enterprise_nature_id": {
+ "description": "浼佷笟鎬ц川",
+ "type": "integer"
+ },
+ "enterprise_scale_id": {
+ "description": "浼佷笟瑙勬ā",
"type": "integer"
},
"file": {
"type": "string"
},
+ "industry_id": {
+ "description": "鎵�灞炶涓�",
+ "type": "integer"
+ },
"latest_date": {
"type": "string"
},
+ "latest_service_time": {
+ "description": "鏈�鏅氭湇鍔℃椂闂�",
+ "type": "string"
+ },
"member_id": {
+ "description": "閿�鍞礋璐d汉ID",
"type": "integer"
},
- "remark": {
+ "name": {
+ "description": "鍏徃鍚嶇О",
"type": "string"
+ },
+ "next_visit_time": {
+ "description": "涓嬫鍥炶鏃堕棿",
+ "type": "string"
+ },
+ "number": {
+ "description": "鍏徃缂栧彿",
+ "type": "string"
+ },
+ "province_id": {
+ "type": "integer"
+ },
+ "region_id": {
+ "type": "integer"
+ },
+ "registered_capital_id": {
+ "description": "娉ㄥ唽璧勯噾",
+ "type": "integer"
+ },
+ "registration_time": {
+ "description": "娉ㄥ唽鏃堕棿",
+ "type": "string"
+ },
+ "remark": {
+ "description": "澶囨敞",
+ "type": "string"
+ },
+ "representative": {
+ "description": "娉曚汉浠h〃",
+ "type": "string"
+ },
+ "service_member_id": {
+ "description": "鏈嶅姟璐熻矗浜篒D",
+ "type": "integer"
}
}
},
@@ -7143,8 +7467,50 @@
"request.AddSubOrder": {
"type": "object",
"properties": {
- "subOrder": {
- "$ref": "#/definitions/request.SubOrder"
+ "clientId": {
+ "type": "integer"
+ },
+ "masterOrderId": {
+ "type": "integer"
+ },
+ "memberId": {
+ "type": "integer"
+ },
+ "number": {
+ "type": "string"
+ },
+ "product": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/model.Product"
+ }
+ }
+ }
+ },
+ "request.AddVetting": {
+ "type": "object",
+ "required": [
+ "opinion",
+ "status",
+ "userId",
+ "vettingId",
+ "vettingType"
+ ],
+ "properties": {
+ "opinion": {
+ "type": "string"
+ },
+ "status": {
+ "type": "integer"
+ },
+ "userId": {
+ "type": "integer"
+ },
+ "vettingId": {
+ "type": "integer"
+ },
+ "vettingType": {
+ "type": "integer"
}
}
},
@@ -7200,102 +7566,6 @@
"pos": {
"description": "鐢ㄦ埛宀椾綅",
"type": "string"
- }
- }
- },
- "request.Client": {
- "type": "object",
- "properties": {
- "business_scope": {
- "description": "缁忚惀鑼冨洿",
- "type": "string"
- },
- "city_id": {
- "type": "integer"
- },
- "client_level_id": {
- "description": "瀹㈡埛绛夌骇ID",
- "type": "integer"
- },
- "client_origin_id": {
- "description": "瀹㈡埛鏉ユ簮ID",
- "type": "integer"
- },
- "client_status_id": {
- "description": "瀹㈡埛鐘舵�両D",
- "type": "integer"
- },
- "client_type_id": {
- "description": "瀹㈡埛绫诲瀷ID",
- "type": "integer"
- },
- "contact": {
- "$ref": "#/definitions/request.Contact"
- },
- "country_id": {
- "type": "integer"
- },
- "detail_address": {
- "description": "璇︾粏鍦板潃",
- "type": "string"
- },
- "enterprise_nature_id": {
- "description": "浼佷笟鎬ц川",
- "type": "integer"
- },
- "enterprise_scale_id": {
- "description": "浼佷笟瑙勬ā",
- "type": "integer"
- },
- "industry_id": {
- "description": "鎵�灞炶涓�",
- "type": "integer"
- },
- "latest_service_time": {
- "description": "鏈�鏅氭湇鍔℃椂闂�",
- "type": "string"
- },
- "member_id": {
- "description": "閿�鍞礋璐d汉ID",
- "type": "integer"
- },
- "name": {
- "description": "鍏徃鍚嶇О",
- "type": "string"
- },
- "next_visit_time": {
- "description": "涓嬫鍥炶鏃堕棿",
- "type": "string"
- },
- "number": {
- "description": "鍏徃缂栧彿",
- "type": "string"
- },
- "province_id": {
- "type": "integer"
- },
- "region_id": {
- "type": "integer"
- },
- "registered_capital_id": {
- "description": "娉ㄥ唽璧勯噾",
- "type": "integer"
- },
- "registration_time": {
- "description": "娉ㄥ唽鏃堕棿",
- "type": "string"
- },
- "remark": {
- "description": "澶囨敞",
- "type": "string"
- },
- "representative": {
- "description": "娉曚汉浠h〃",
- "type": "string"
- },
- "service_member_id": {
- "description": "鏈嶅姟璐熻矗浜篒D",
- "type": "integer"
}
}
},
@@ -7721,29 +7991,6 @@
"type": "array",
"items": {
"type": "integer"
- }
- }
- }
- },
- "request.SubOrder": {
- "type": "object",
- "properties": {
- "clientId": {
- "type": "integer"
- },
- "masterOrderId": {
- "type": "integer"
- },
- "memberId": {
- "type": "integer"
- },
- "number": {
- "type": "string"
- },
- "product": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/model.Product"
}
}
}
@@ -8256,7 +8503,7 @@
"type": "integer"
},
"money": {
- "type": "string"
+ "type": "number"
},
"number": {
"type": "string"
@@ -8514,6 +8761,9 @@
"currency": {
"type": "integer"
},
+ "detail_address": {
+ "type": "string"
+ },
"disadvantages": {
"type": "string"
},
@@ -8561,6 +8811,9 @@
},
"regular_customers_id": {
"type": "integer"
+ },
+ "remark": {
+ "type": "string"
},
"sale_stage_id": {
"type": "integer"
@@ -8720,35 +8973,11 @@
"request.UpdateSalesReturnRequest": {
"type": "object",
"properties": {
- "clientId": {
- "type": "integer"
- },
"id": {
"type": "integer"
},
- "memberId": {
- "type": "integer"
- },
- "number": {
- "type": "string"
- },
- "products": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/model.Product"
- }
- },
- "reason": {
- "type": "string"
- },
- "repository": {
- "type": "string"
- },
- "returnDate": {
- "type": "string"
- },
- "status": {
- "type": "integer"
+ "salesReturn": {
+ "$ref": "#/definitions/request.SalesReturn"
}
}
},
@@ -8774,6 +9003,35 @@
"type": "array",
"items": {
"$ref": "#/definitions/request.UpdateSalesSources"
+ }
+ }
+ }
+ },
+ "request.UpdateSatisfaction": {
+ "type": "object",
+ "required": [
+ "id",
+ "name"
+ ],
+ "properties": {
+ "id": {
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ }
+ }
+ },
+ "request.UpdateSatisfactions": {
+ "type": "object",
+ "required": [
+ "satisfactions"
+ ],
+ "properties": {
+ "satisfactions": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/request.UpdateSatisfaction"
}
}
}
@@ -8840,10 +9098,45 @@
"request.UpdateServiceFeeManage": {
"type": "object",
"properties": {
- "client": {
- "$ref": "#/definitions/request.Client"
+ "business_scope": {
+ "description": "缁忚惀鑼冨洿",
+ "type": "string"
},
- "client_id": {
+ "city_id": {
+ "type": "integer"
+ },
+ "client_level_id": {
+ "description": "瀹㈡埛绛夌骇ID",
+ "type": "integer"
+ },
+ "client_origin_id": {
+ "description": "瀹㈡埛鏉ユ簮ID",
+ "type": "integer"
+ },
+ "client_status_id": {
+ "description": "瀹㈡埛鐘舵�両D",
+ "type": "integer"
+ },
+ "client_type_id": {
+ "description": "瀹㈡埛绫诲瀷ID",
+ "type": "integer"
+ },
+ "contact": {
+ "$ref": "#/definitions/request.Contact"
+ },
+ "country_id": {
+ "type": "integer"
+ },
+ "detail_address": {
+ "description": "璇︾粏鍦板潃",
+ "type": "string"
+ },
+ "enterprise_nature_id": {
+ "description": "浼佷笟鎬ц川",
+ "type": "integer"
+ },
+ "enterprise_scale_id": {
+ "description": "浼佷笟瑙勬ā",
"type": "integer"
},
"file": {
@@ -8852,14 +9145,56 @@
"id": {
"type": "integer"
},
+ "industry_id": {
+ "description": "鎵�灞炶涓�",
+ "type": "integer"
+ },
"latest_date": {
+ "type": "string"
+ },
+ "latest_service_time": {
+ "description": "鏈�鏅氭湇鍔℃椂闂�",
"type": "string"
},
"member_id": {
"type": "integer"
},
+ "name": {
+ "description": "鍏徃鍚嶇О",
+ "type": "string"
+ },
+ "next_visit_time": {
+ "description": "涓嬫鍥炶鏃堕棿",
+ "type": "string"
+ },
+ "number": {
+ "description": "鍏徃缂栧彿",
+ "type": "string"
+ },
+ "province_id": {
+ "type": "integer"
+ },
+ "region_id": {
+ "type": "integer"
+ },
+ "registered_capital_id": {
+ "description": "娉ㄥ唽璧勯噾",
+ "type": "integer"
+ },
+ "registration_time": {
+ "description": "娉ㄥ唽鏃堕棿",
+ "type": "string"
+ },
"remark": {
"type": "string"
+ },
+ "representative": {
+ "description": "娉曚汉浠h〃",
+ "type": "string"
+ },
+ "service_member_id": {
+ "description": "鏈嶅姟璐熻矗浜篒D",
+ "type": "integer"
}
}
},
@@ -9109,6 +9444,13 @@
"$ref": "#/definitions/model.Country"
}
},
+ "department": {
+ "description": "閮ㄩ棬",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/model.Department"
+ }
+ },
"enterprise_nature": {
"description": "浼佷笟鎬ц川",
"type": "array",
@@ -9128,6 +9470,13 @@
"type": "array",
"items": {
"$ref": "#/definitions/model.Industry"
+ }
+ },
+ "member": {
+ "description": "Member",
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/model.User"
}
},
"province": {
@@ -9419,6 +9768,17 @@
}
}
},
+ "response.SalesReturnResponse": {
+ "type": "object",
+ "properties": {
+ "list": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/model.SalesReturn"
+ }
+ }
+ }
+ },
"response.SalesSourceResponse": {
"type": "object",
"properties": {
@@ -9430,6 +9790,17 @@
}
}
},
+ "response.SatisfactionResponse": {
+ "type": "object",
+ "properties": {
+ "list": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/model.Satisfaction"
+ }
+ }
+ }
+ },
"response.ServiceContractsResponse": {
"type": "object",
"properties": {
--
Gitblit v1.8.0