zhangqian
2024-06-12 c40d07e760598c0aae4353f7a1e2d6b01747e83f
docs/docs.go
@@ -106,6 +106,45 @@
                }
            }
        },
        "/api-sa/v1/audio/download": {
            "get": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "音频"
                ],
                "summary": "音频下载",
                "parameters": [
                    {
                        "type": "integer",
                        "name": "id",
                        "in": "query",
                        "required": true
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "allOf": [
                                {
                                    "$ref": "#/definitions/util.Response"
                                },
                                {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "$ref": "#/definitions/models.Audio"
                                        }
                                    }
                                }
                            ]
                        }
                    }
                }
            }
        },
        "/api-sa/v1/audio/follow": {
            "post": {
                "produces": [
@@ -148,6 +187,45 @@
                }
            }
        },
        "/api-sa/v1/audio/info": {
            "get": {
                "produces": [
                    "application/json"
                ],
                "tags": [
                    "音频"
                ],
                "summary": "音频详情,含解析结果",
                "parameters": [
                    {
                        "type": "integer",
                        "name": "id",
                        "in": "query",
                        "required": true
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功",
                        "schema": {
                            "allOf": [
                                {
                                    "$ref": "#/definitions/util.Response"
                                },
                                {
                                    "type": "object",
                                    "properties": {
                                        "data": {
                                            "$ref": "#/definitions/models.Audio"
                                        }
                                    }
                                }
                            ]
                        }
                    }
                }
            }
        },
        "/api-sa/v1/audio/list": {
            "get": {
                "produces": [
@@ -160,8 +238,38 @@
                "parameters": [
                    {
                        "type": "string",
                        "description": "开始时间",
                        "name": "beginTime",
                        "in": "query"
                    },
                    {
                        "type": "string",
                        "description": "司机号",
                        "name": "driverNumber",
                        "in": "query"
                    },
                    {
                        "type": "string",
                        "description": "结束时间",
                        "name": "endTime",
                        "in": "query"
                    },
                    {
                        "enum": [
                            1,
                            2
                        ],
                        "type": "integer",
                        "x-enum-comments": {
                            "BoolTypeFalse": "false",
                            "BoolTypeTrue": "true"
                        },
                        "x-enum-varnames": [
                            "BoolTypeTrue",
                            "BoolTypeFalse"
                        ],
                        "description": "是否关注 1关注 2未关注",
                        "name": "isFollowed",
                        "in": "query"
                    },
                    {
@@ -192,6 +300,23 @@
                        "type": "string",
                        "description": "车站号",
                        "name": "stationNumber",
                        "in": "query"
                    },
                    {
                        "type": "array",
                        "items": {
                            "enum": [
                                0,
                                1,
                                2,
                                3,
                                4
                            ],
                            "type": "integer"
                        },
                        "collectionFormat": "csv",
                        "description": "音频状态数组",
                        "name": "statusList",
                        "in": "query"
                    },
                    {
@@ -432,7 +557,7 @@
                                        "data": {
                                            "type": "array",
                                            "items": {
                                                "$ref": "#/definitions/models.Text"
                                                "$ref": "#/definitions/models.Word"
                                            }
                                        }
                                    }
@@ -525,6 +650,10 @@
                        }
                    ]
                },
                "audioText": {
                    "description": "解析出的文本",
                    "type": "string"
                },
                "createdAt": {
                    "type": "string"
                },
@@ -575,31 +704,13 @@
                },
                "updatedAt": {
                    "type": "string"
                }
            }
        },
        "models.Text": {
            "type": "object",
            "properties": {
                "content": {
                    "description": "音频名称",
                    "type": "string"
                },
                "createdAt": {
                    "type": "string"
                },
                "deletedAt": {
                    "$ref": "#/definitions/gorm.DeletedAt"
                },
                "id": {
                    "type": "integer"
                },
                "locomotiveNumber": {
                    "description": "机车号",
                    "type": "string"
                },
                "updatedAt": {
                    "type": "string"
                "words": {
                    "description": "匹配到的文字数组",
                    "type": "array",
                    "items": {
                        "type": "string"
                    }
                }
            }
        },
@@ -607,7 +718,7 @@
            "type": "object",
            "properties": {
                "class": {
                    "description": "分类",
                    "description": "分类  1 机车 2车次 3 车站",
                    "allOf": [
                        {
                            "$ref": "#/definitions/constvar.Class"
@@ -630,6 +741,31 @@
                "parentID": {
                    "description": "上级id",
                    "type": "integer"
                },
                "updatedAt": {
                    "type": "string"
                }
            }
        },
        "models.Word": {
            "type": "object",
            "properties": {
                "content": {
                    "description": "文字",
                    "type": "string"
                },
                "createdAt": {
                    "type": "string"
                },
                "deletedAt": {
                    "$ref": "#/definitions/gorm.DeletedAt"
                },
                "id": {
                    "type": "integer"
                },
                "locomotiveNumber": {
                    "description": "机车号",
                    "type": "string"
                },
                "updatedAt": {
                    "type": "string"
@@ -693,7 +829,12 @@
            "type": "object",
            "properties": {
                "followStatus": {
                    "$ref": "#/definitions/constvar.BoolType"
                    "description": "1 已关注 2未关注",
                    "allOf": [
                        {
                            "$ref": "#/definitions/constvar.BoolType"
                        }
                    ]
                }
            }
        },