From 869d20008718d26fcf6d85f4bfe9f7fdbe9db3c5 Mon Sep 17 00:00:00 2001
From: wangpengfei <274878379@qq.com>
Date: 星期二, 25 七月 2023 19:39:52 +0800
Subject: [PATCH] fix

---
 docs/docs.go |   66 +++++++++++++++++++++++++++++++-
 1 files changed, 63 insertions(+), 3 deletions(-)

diff --git a/docs/docs.go b/docs/docs.go
index 4fa51ec..bc4cbff 100644
--- a/docs/docs.go
+++ b/docs/docs.go
@@ -1095,7 +1095,7 @@
             }
         },
         "/api/contact/list": {
-            "get": {
+            "post": {
                 "produces": [
                     "application/json"
                 ],
@@ -1103,6 +1103,17 @@
                     "Contact"
                 ],
                 "summary": "鑱旂郴浜哄垪琛�",
+                "parameters": [
+                    {
+                        "description": "鍙傛暟",
+                        "name": "object",
+                        "in": "body",
+                        "required": true,
+                        "schema": {
+                            "$ref": "#/definitions/request.GetContactList"
+                        }
+                    }
+                ],
                 "responses": {
                     "200": {
                         "description": "OK",
@@ -4816,14 +4827,25 @@
             }
         },
         "/api/salesLeads/list": {
-            "get": {
+            "post": {
                 "produces": [
                     "application/json"
                 ],
                 "tags": [
                     "SalesLeads"
                 ],
-                "summary": "鑾峰彇閿�鍞嚎绱㈠垪琛�",
+                "summary": "閿�鍞嚎绱㈠垪琛�",
+                "parameters": [
+                    {
+                        "description": "鍙傛暟",
+                        "name": "object",
+                        "in": "body",
+                        "required": true,
+                        "schema": {
+                            "$ref": "#/definitions/request.GetSalesLeadsList"
+                        }
+                    }
+                ],
                 "responses": {
                     "200": {
                         "description": "OK",
@@ -9703,6 +9725,38 @@
                 }
             }
         },
+        "request.GetContactList": {
+            "type": "object",
+            "properties": {
+                "keyword": {
+                    "type": "string"
+                },
+                "page": {
+                    "description": "椤电爜",
+                    "type": "integer"
+                },
+                "pageSize": {
+                    "description": "姣忛〉澶у皬",
+                    "type": "integer"
+                }
+            }
+        },
+        "request.GetSalesLeadsList": {
+            "type": "object",
+            "properties": {
+                "keyword": {
+                    "type": "string"
+                },
+                "page": {
+                    "description": "椤电爜",
+                    "type": "integer"
+                },
+                "pageSize": {
+                    "description": "姣忛〉澶у皬",
+                    "type": "integer"
+                }
+            }
+        },
         "request.GetUserList": {
             "type": "object",
             "properties": {
@@ -11813,6 +11867,9 @@
         "response.ContactResponse": {
             "type": "object",
             "properties": {
+                "count": {
+                    "type": "integer"
+                },
                 "list": {
                     "type": "array",
                     "items": {
@@ -12400,6 +12457,9 @@
         "response.SalesLeadsResponse": {
             "type": "object",
             "properties": {
+                "count": {
+                    "type": "integer"
+                },
                 "list": {
                     "type": "array",
                     "items": {

--
Gitblit v1.8.0