zhangqian
2023-08-15 f5461743f6542e6b4a793117e05777769f9c3377
docs/docs.go
@@ -16,7 +16,7 @@
    "host": "{{.Host}}",
    "basePath": "{{.BasePath}}",
    "paths": {
        "/api/base/login": {
        "/v1/notice/task/start": {
            "post": {
                "produces": [
                    "application/json"
@@ -24,7 +24,7 @@
                "tags": [
                    "Base"
                ],
                "summary": "用户登录",
                "summary": "任务开启通知",
                "parameters": [
                    {
                        "description": "查询参数",
@@ -32,7 +32,7 @@
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.Login"
                            "$ref": "#/definitions/request.TaskInfo"
                        }
                    }
                ],
@@ -173,23 +173,27 @@
                }
            }
        },
        "request.Login": {
        "request.TaskInfo": {
            "type": "object",
            "properties": {
                "captcha": {
                    "description": "验证码",
                "device": {
                    "description": "设备",
                    "type": "string"
                },
                "captchaId": {
                    "description": "验证码ID",
                "orderId": {
                    "description": "订单号",
                    "type": "string"
                },
                "password": {
                    "description": "密码",
                    "description": "产品",
                    "type": "string"
                },
                "username": {
                    "description": "用户名",
                "procedure": {
                    "description": "工序",
                    "type": "string"
                },
                "workOrder": {
                    "description": "工单",
                    "type": "string"
                }
            }