yinbangzhong
2024-06-20 a5429b8a83e1b4a48c2a3b9b0b475f08a114837c
docs/docs.go
@@ -360,6 +360,37 @@
                }
            }
        },
        "/api-sa/v1/audio/preLoadPath": {
            "get": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "音频自动加载路径"
                ],
                "summary": "音频自动加载路径",
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "allOf": [
                                {
                                    "$ref": "#/definitions/util.Response"
                                },
                                {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "$ref": "#/definitions/response.PreLoadPathResp"
                                        }
                                    }
                                }
                            ]
                        }
                    }
                }
            }
        },
        "/api-sa/v1/audio/process": {
            "post": {
                "produces": [
@@ -529,6 +560,36 @@
                }
            }
        },
        "/api-sa/v1/text/delete": {
            "delete": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "文字库"
                ],
                "summary": "修改文字",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.AddTextReq"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "$ref": "#/definitions/util.Response"
                        }
                    }
                }
            }
        },
        "/api-sa/v1/text/list": {
            "get": {
                "produces": [
@@ -578,6 +639,36 @@
                                    }
                                }
                            ]
                        }
                    }
                }
            }
        },
        "/api-sa/v1/text/update": {
            "post": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "文字库"
                ],
                "summary": "修改文字",
                "parameters": [
                    {
                        "description": "参数",
                        "name": "object",
                        "in": "body",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/request.AddTextReq"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "$ref": "#/definitions/util.Response"
                        }
                    }
                }
@@ -690,6 +781,10 @@
                        }
                    ]
                },
                "kilometerMarker": {
                    "description": "公里标",
                    "type": "string"
                },
                "locomotiveNumber": {
                    "description": "机车号",
                    "type": "string"
@@ -701,6 +796,10 @@
                "occurrenceTime": {
                    "type": "string"
                },
                "routeNumber": {
                    "description": "交路号",
                    "type": "string"
                },
                "score": {
                    "description": "置信度",
                    "type": "number"
@@ -710,7 +809,7 @@
                    "type": "integer"
                },
                "station": {
                    "description": "公里标",
                    "description": "车站",
                    "type": "string"
                },
                "trainNumber": {
@@ -798,6 +897,9 @@
                    "description": "音频名称",
                    "type": "string"
                },
                "id": {
                    "type": "integer"
                },
                "locomotiveNumber": {
                    "description": "机车号",
                    "type": "string"
@@ -856,6 +958,14 @@
                }
            }
        },
        "response.PreLoadPathResp": {
            "type": "object",
            "properties": {
                "preLoadPath": {
                    "type": "string"
                }
            }
        },
        "util.Response": {
            "type": "object",
            "properties": {