add
wangpengfei
2023-08-25 9f98932726cb41697fabccbbbd876205e7255c95
docs/docs.go
@@ -3253,6 +3253,44 @@
                }
            }
        },
        "/s/changeSupplierStatus": {
            "post": {
                "security": [
                    {
                        "ApiKeyAuth": []
                    }
                ],
                "consumes": [
                    "application/json"
                ],
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "Supplier"
                ],
                "summary": "修改Supplier状态",
                "parameters": [
                    {
                        "description": "修改Supplier状态",
                        "name": "data",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.SupplierStatus"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "{\"success\":true,\"data\":{},\"msg\":\"修改成功\"}",
                        "schema": {
                            "type": "string"
                        }
                    }
                }
            }
        },
        "/s/createSupplier": {
            "post": {
                "security": [
@@ -6877,6 +6915,17 @@
                }
            }
        },
        "request.SupplierStatus": {
            "type": "object",
            "properties": {
                "id": {
                    "type": "integer"
                },
                "status": {
                    "type": "integer"
                }
            }
        },
        "request.SysAuthorityBtnReq": {
            "type": "object",
            "properties": {