zhangqian
2024-04-22 632bef19cd6229014644e4394d43e95c6707d773
docs/docs.go
@@ -1915,6 +1915,167 @@
                    }
                }
            }
        },
        "/api-jl/v1/workerPosition/createWorkerPositionInfo": {
            "post": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "机台管理"
                ],
                "summary": "创建机台信息",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.AddWorkPositionRequest"
                        }
                    },
                    {
                        "type": "string",
                        "description": "token",
                        "name": "Authorization",
                        "in": "header",
                        "required": true
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "$ref": "#/definitions/util.Response"
                        }
                    }
                }
            }
        },
        "/api-jl/v1/workerPosition/deleteWorkerPositionInfo/{id}": {
            "delete": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "机台管理"
                ],
                "summary": "删除机台信息",
                "parameters": [
                    {
                        "type": "string",
                        "description": "id",
                        "name": "id",
                        "in": "path",
                        "required": true
                    },
                    {
                        "type": "string",
                        "description": "token",
                        "name": "Authorization",
                        "in": "header",
                        "required": true
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "$ref": "#/definitions/util.Response"
                        }
                    }
                }
            }
        },
        "/api-jl/v1/workerPosition/getWorkerPositionList": {
            "post": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "机台管理"
                ],
                "summary": "获取机台信息列表",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.GetWorkerPositionList"
                        }
                    },
                    {
                        "type": "string",
                        "description": "token",
                        "name": "Authorization",
                        "in": "header",
                        "required": true
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "allOf": [
                                {
                                    "$ref": "#/definitions/util.ResponseList"
                                },
                                {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "$ref": "#/definitions/models.WorkerPosition"
                                            }
                                        }
                                    }
                                }
                            ]
                        }
                    }
                }
            }
        },
        "/api-jl/v1/workerPosition/updateWorkerPositionInfo": {
            "post": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "机台管理"
                ],
                "summary": "更新机台信息",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.UpdateWorkerPositionRequest"
                        }
                    },
                    {
                        "type": "string",
                        "description": "token",
                        "name": "Authorization",
                        "in": "header",
                        "required": true
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "$ref": "#/definitions/util.Response"
                        }
                    }
                }
            }
        }
    },
    "definitions": {
@@ -2409,7 +2570,7 @@
                    "type": "string"
                },
                "worker": {
                    "description": "工人ID",
                    "description": "工人",
                    "allOf": [
                        {
                            "$ref": "#/definitions/models.Worker"
@@ -2590,6 +2751,62 @@
                    "type": "string"
                },
                "workTypeId": {
                    "type": "integer"
                }
            }
        },
        "models.WorkerPosition": {
            "type": "object",
            "properties": {
                "createdAt": {
                    "type": "string"
                },
                "creator": {
                    "type": "string"
                },
                "deletedAt": {
                    "$ref": "#/definitions/gorm.DeletedAt"
                },
                "endDate": {
                    "description": "结束日期",
                    "type": "string"
                },
                "endWorkerPosition": {
                    "description": "结束车号",
                    "type": "integer"
                },
                "id": {
                    "type": "integer"
                },
                "name": {
                    "description": "车间",
                    "type": "string"
                },
                "startDate": {
                    "description": "开始日期",
                    "type": "string"
                },
                "startWorkerPosition": {
                    "description": "开始车号",
                    "type": "integer"
                },
                "updatedAt": {
                    "type": "string"
                },
                "worker": {
                    "description": "工人",
                    "allOf": [
                        {
                            "$ref": "#/definitions/models.Worker"
                        }
                    ]
                },
                "workerId": {
                    "description": "工人ID",
                    "type": "string"
                },
                "workshopGroup": {
                    "description": "车组",
                    "type": "integer"
                }
            }
@@ -2931,6 +3148,48 @@
                }
            }
        },
        "request.AddWorkPositionRequest": {
            "type": "object",
            "required": [
                "endDate",
                "endWorkerPosition",
                "startDate",
                "startWorkerPosition",
                "workerId",
                "workshop",
                "workshopGroup"
            ],
            "properties": {
                "endDate": {
                    "description": "结束日期",
                    "type": "string"
                },
                "endWorkerPosition": {
                    "description": "结束车号",
                    "type": "integer"
                },
                "startDate": {
                    "description": "开始日期",
                    "type": "string"
                },
                "startWorkerPosition": {
                    "description": "开始车号",
                    "type": "integer"
                },
                "workerId": {
                    "description": "工人ID",
                    "type": "string"
                },
                "workshop": {
                    "description": "车间",
                    "type": "string"
                },
                "workshopGroup": {
                    "description": "车组",
                    "type": "integer"
                }
            }
        },
        "request.ChangeYieldRegister": {
            "type": "object",
            "properties": {
@@ -3070,6 +3329,22 @@
            }
        },
        "request.GetWorkerList": {
            "type": "object",
            "properties": {
                "keyword": {
                    "type": "string"
                },
                "page": {
                    "description": "页码",
                    "type": "integer"
                },
                "pageSize": {
                    "description": "每页大小",
                    "type": "integer"
                }
            }
        },
        "request.GetWorkerPositionList": {
            "type": "object",
            "properties": {
                "keyword": {
@@ -3267,6 +3542,51 @@
                }
            }
        },
        "request.UpdateWorkerPositionRequest": {
            "type": "object",
            "required": [
                "endDate",
                "endWorkerPosition",
                "startDate",
                "startWorkerPosition",
                "workerId",
                "workshop",
                "workshopGroup"
            ],
            "properties": {
                "endDate": {
                    "description": "结束日期",
                    "type": "string"
                },
                "endWorkerPosition": {
                    "description": "结束车号",
                    "type": "integer"
                },
                "id": {
                    "type": "integer"
                },
                "startDate": {
                    "description": "开始日期",
                    "type": "string"
                },
                "startWorkerPosition": {
                    "description": "开始车号",
                    "type": "integer"
                },
                "workerId": {
                    "description": "工人ID",
                    "type": "string"
                },
                "workshop": {
                    "description": "车间",
                    "type": "string"
                },
                "workshopGroup": {
                    "description": "车组",
                    "type": "integer"
                }
            }
        },
        "request.YieldRegisterCircleInfo": {
            "type": "object",
            "properties": {