add
wangpengfei
2023-07-25 74f698acff298c45e436824e15c0da3c93b7926e
docs/docs.go
@@ -500,14 +500,25 @@
            }
        },
        "/api/client/list": {
            "get": {
            "post": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "Client"
                ],
                "summary": "获取客户列表",
                "summary": "客户列表",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.GetClientList"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
@@ -1095,7 +1106,7 @@
            }
        },
        "/api/contact/list": {
            "get": {
            "post": {
                "produces": [
                    "application/json"
                ],
@@ -1103,6 +1114,17 @@
                    "Contact"
                ],
                "summary": "联系人列表",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.GetContactList"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
@@ -2068,14 +2090,25 @@
            }
        },
        "/api/followRecord/list": {
            "get": {
            "post": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "FollowRecord"
                ],
                "summary": "获取跟进记录列表",
                "summary": "跟进记录列表",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.GetFollowRecordList"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
@@ -4816,14 +4849,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 +9747,70 @@
                }
            }
        },
        "request.GetClientList": {
            "type": "object",
            "properties": {
                "keyword": {
                    "type": "string"
                },
                "page": {
                    "description": "页码",
                    "type": "integer"
                },
                "pageSize": {
                    "description": "每页大小",
                    "type": "integer"
                }
            }
        },
        "request.GetContactList": {
            "type": "object",
            "properties": {
                "keyword": {
                    "type": "string"
                },
                "page": {
                    "description": "页码",
                    "type": "integer"
                },
                "pageSize": {
                    "description": "每页大小",
                    "type": "integer"
                }
            }
        },
        "request.GetFollowRecordList": {
            "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": {
@@ -11780,6 +11888,9 @@
        "response.ClientResponse": {
            "type": "object",
            "properties": {
                "count": {
                    "type": "integer"
                },
                "list": {
                    "type": "array",
                    "items": {
@@ -11813,6 +11924,9 @@
        "response.ContactResponse": {
            "type": "object",
            "properties": {
                "count": {
                    "type": "integer"
                },
                "list": {
                    "type": "array",
                    "items": {
@@ -12140,6 +12254,9 @@
        "response.FollowRecordResponse": {
            "type": "object",
            "properties": {
                "count": {
                    "type": "integer"
                },
                "list": {
                    "type": "array",
                    "items": {
@@ -12400,6 +12517,9 @@
        "response.SalesLeadsResponse": {
            "type": "object",
            "properties": {
                "count": {
                    "type": "integer"
                },
                "list": {
                    "type": "array",
                    "items": {