zhangqian
2024-03-22 6cce6de2161840f77d397fe25bee6096d0eb9877
docs/docs.go
@@ -186,6 +186,36 @@
                }
            }
        },
        "/api-outsourcing/v1/order/materialSearch": {
            "post": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "订单管理"
                ],
                "summary": "物料搜索",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.MaterialSearch"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "$ref": "#/definitions/util.ResponseList"
                        }
                    }
                }
            }
        },
        "/api-outsourcing/v1/order/overview": {
            "get": {
                "produces": [
@@ -541,6 +571,23 @@
                }
            }
        },
        "request.MaterialSearch": {
            "type": "object",
            "properties": {
                "keyword": {
                    "description": "关键字",
                    "type": "string"
                },
                "page": {
                    "description": "页码",
                    "type": "integer"
                },
                "pageSize": {
                    "description": "每页大小",
                    "type": "integer"
                }
            }
        },
        "request.OutsourcingOrderOverview": {
            "type": "object",
            "properties": {