From 46f410ae18f22f5e9a8368f0ea7c721863d18fce Mon Sep 17 00:00:00 2001
From: wangpengfei <274878379@qq.com>
Date: 星期三, 02 八月 2023 17:22:35 +0800
Subject: [PATCH] fix

---
 docs/docs.go |   23 ++++++++++++++++++-----
 1 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/docs/docs.go b/docs/docs.go
index 20ef8a0..109093a 100644
--- a/docs/docs.go
+++ b/docs/docs.go
@@ -1109,7 +1109,7 @@
                 }
             }
         },
-        "/api/contact/delete/{id}": {
+        "/api/contact/delete": {
             "delete": {
                 "produces": [
                     "application/json"
@@ -1120,11 +1120,13 @@
                 "summary": "鍒犻櫎鑱旂郴浜�",
                 "parameters": [
                     {
-                        "type": "integer",
                         "description": "鏌ヨ鍙傛暟",
-                        "name": "id",
-                        "in": "path",
-                        "required": true
+                        "name": "object",
+                        "in": "body",
+                        "required": true,
+                        "schema": {
+                            "$ref": "#/definitions/request.DeleteContact"
+                        }
                     }
                 ],
                 "responses": {
@@ -9932,6 +9934,17 @@
                 }
             }
         },
+        "request.DeleteContact": {
+            "type": "object",
+            "properties": {
+                "ids": {
+                    "type": "array",
+                    "items": {
+                        "type": "integer"
+                    }
+                }
+            }
+        },
         "request.DeleteCountry": {
             "type": "object",
             "properties": {

--
Gitblit v1.8.0