| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992 |
- {
- "swagger": "2.0",
- "info": {
- "contact": {}
- },
- "paths": {
- "/api-sa/v1/audio/batchDelete": {
- "delete": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "批量删除音频",
- "parameters": [
- {
- "description": "参数",
- "name": "object",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.BatchProcessAudio"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "$ref": "#/definitions/util.Response"
- }
- }
- }
- }
- },
- "/api-sa/v1/audio/batchProcess": {
- "post": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "批量处理音频",
- "parameters": [
- {
- "description": "参数",
- "name": "object",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.BatchProcessAudio"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "$ref": "#/definitions/util.Response"
- }
- }
- }
- }
- },
- "/api-sa/v1/audio/delete": {
- "delete": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "删除音频",
- "parameters": [
- {
- "description": "参数",
- "name": "object",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.ProcessAudio"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "$ref": "#/definitions/util.Response"
- }
- }
- }
- }
- },
- "/api-sa/v1/audio/download": {
- "get": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "音频下载",
- "parameters": [
- {
- "type": "integer",
- "name": "fileType",
- "in": "query"
- },
- {
- "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": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "关注/取消关注",
- "parameters": [
- {
- "description": "参数",
- "name": "object",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.FollowReq"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "allOf": [
- {
- "$ref": "#/definitions/util.Response"
- },
- {
- "type": "object",
- "properties": {
- "data": {
- "$ref": "#/definitions/response.FollowResp"
- }
- }
- }
- ]
- }
- }
- }
- }
- },
- "/api-sa/v1/audio/info": {
- "get": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "音频详情,含解析结果",
- "parameters": [
- {
- "type": "integer",
- "name": "fileType",
- "in": "query"
- },
- {
- "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": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "音频分析检索",
- "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"
- },
- {
- "type": "string",
- "description": "关键字",
- "name": "keyword",
- "in": "query"
- },
- {
- "type": "string",
- "description": "机车号",
- "name": "locomotiveNumber",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "页码",
- "name": "page",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "每页大小",
- "name": "pageSize",
- "in": "query"
- },
- {
- "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"
- },
- {
- "type": "string",
- "description": "车次",
- "name": "trainNumber",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "allOf": [
- {
- "$ref": "#/definitions/util.ResponseList"
- },
- {
- "type": "object",
- "properties": {
- "data": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/models.Audio"
- }
- }
- }
- }
- ]
- }
- }
- }
- }
- },
- "/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": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "处理音频",
- "parameters": [
- {
- "description": "参数",
- "name": "object",
- "in": "body",
- "required": true,
- "schema": {
- "$ref": "#/definitions/request.ProcessAudio"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "$ref": "#/definitions/util.Response"
- }
- }
- }
- }
- },
- "/api-sa/v1/audio/trainInfoList": {
- "get": {
- "produces": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "获取火车信息",
- "parameters": [
- {
- "enum": [
- 1,
- 2,
- 3
- ],
- "type": "integer",
- "x-enum-comments": {
- "ClassLocomotive": "机车",
- "ClassStation": "车站",
- "ClassTrain": "车次"
- },
- "x-enum-varnames": [
- "ClassLocomotive",
- "ClassTrain",
- "ClassStation"
- ],
- "description": "信息分类 1机车2车次3车站",
- "name": "class",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "页码",
- "name": "page",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "每页大小",
- "name": "pageSize",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "上级id",
- "name": "parentID",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "allOf": [
- {
- "$ref": "#/definitions/util.ResponseList"
- },
- {
- "type": "object",
- "properties": {
- "data": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/models.TrainInfo"
- }
- }
- }
- }
- ]
- }
- }
- }
- }
- },
- "/api-sa/v1/audio/upload": {
- "post": {
- "consumes": [
- "multipart/form-data"
- ],
- "produces": [
- "application/json"
- ],
- "tags": [
- "音频"
- ],
- "summary": "上传音频",
- "parameters": [
- {
- "type": "array",
- "items": {
- "type": "file"
- },
- "collectionFormat": "csv",
- "description": "多文件上传",
- "name": "file",
- "in": "formData"
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "$ref": "#/definitions/util.Response"
- }
- }
- }
- }
- },
- "/api-sa/v1/text/add": {
- "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"
- }
- }
- }
- }
- },
- "/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": [
- "application/json"
- ],
- "tags": [
- "文字库"
- ],
- "summary": "文字库列表",
- "parameters": [
- {
- "type": "string",
- "description": "关键字",
- "name": "keyword",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "页码",
- "name": "page",
- "in": "query"
- },
- {
- "type": "integer",
- "description": "每页大小",
- "name": "pageSize",
- "in": "query"
- }
- ],
- "responses": {
- "200": {
- "description": "成功",
- "schema": {
- "allOf": [
- {
- "$ref": "#/definitions/util.ResponseList"
- },
- {
- "type": "object",
- "properties": {
- "data": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/models.Word"
- }
- }
- }
- }
- ]
- }
- }
- }
- }
- },
- "/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"
- }
- }
- }
- }
- }
- },
- "definitions": {
- "constvar.AudioStatus": {
- "type": "integer",
- "enum": [
- 0,
- 1,
- 2,
- 3,
- 4
- ],
- "x-enum-comments": {
- "AudioStatusFailed": "处理失败",
- "AudioStatusFinish": "处理完成",
- "AudioStatusProcessing": "处理中",
- "AudioStatusUploadOk": "上传成功 待处理",
- "AudioStatusUploading": "上传中"
- },
- "x-enum-varnames": [
- "AudioStatusUploading",
- "AudioStatusUploadOk",
- "AudioStatusProcessing",
- "AudioStatusFinish",
- "AudioStatusFailed"
- ]
- },
- "constvar.BoolType": {
- "type": "integer",
- "enum": [
- 1,
- 2
- ],
- "x-enum-comments": {
- "BoolTypeFalse": "false",
- "BoolTypeTrue": "true"
- },
- "x-enum-varnames": [
- "BoolTypeTrue",
- "BoolTypeFalse"
- ]
- },
- "constvar.Class": {
- "type": "integer",
- "enum": [
- 1,
- 2,
- 3
- ],
- "x-enum-comments": {
- "ClassLocomotive": "机车",
- "ClassStation": "车站",
- "ClassTrain": "车次"
- },
- "x-enum-varnames": [
- "ClassLocomotive",
- "ClassTrain",
- "ClassStation"
- ]
- },
- "gorm.DeletedAt": {
- "type": "object",
- "properties": {
- "time": {
- "type": "string"
- },
- "valid": {
- "description": "Valid is true if Time is not NULL",
- "type": "boolean"
- }
- }
- },
- "models.Audio": {
- "type": "object",
- "properties": {
- "audioStatus": {
- "description": "音频状态",
- "allOf": [
- {
- "$ref": "#/definitions/constvar.AudioStatus"
- }
- ]
- },
- "audioText": {
- "description": "解析出的文本",
- "type": "string"
- },
- "createdAt": {
- "type": "string"
- },
- "deletedAt": {
- "$ref": "#/definitions/gorm.DeletedAt"
- },
- "driverNumber": {
- "description": "司机号",
- "type": "string"
- },
- "id": {
- "type": "integer"
- },
- "isFollowed": {
- "description": "是否关注 1关注 2未关注",
- "allOf": [
- {
- "$ref": "#/definitions/constvar.BoolType"
- }
- ]
- },
- "kilometerMarker": {
- "description": "公里标",
- "type": "string"
- },
- "locomotiveNumber": {
- "description": "机车号",
- "type": "string"
- },
- "name": {
- "description": "音频名称",
- "type": "string"
- },
- "occurrenceTime": {
- "type": "string"
- },
- "routeNumber": {
- "description": "交路号",
- "type": "string"
- },
- "score": {
- "description": "置信度",
- "type": "number"
- },
- "size": {
- "description": "音频大小",
- "type": "integer"
- },
- "station": {
- "description": "车站",
- "type": "string"
- },
- "trainNumber": {
- "description": "车次",
- "type": "string"
- },
- "updatedAt": {
- "type": "string"
- },
- "words": {
- "description": "匹配到的文字数组",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "models.TrainInfo": {
- "type": "object",
- "properties": {
- "class": {
- "description": "分类 1 机车 2车次 3 车站",
- "allOf": [
- {
- "$ref": "#/definitions/constvar.Class"
- }
- ]
- },
- "createdAt": {
- "type": "string"
- },
- "deletedAt": {
- "$ref": "#/definitions/gorm.DeletedAt"
- },
- "id": {
- "type": "integer"
- },
- "name": {
- "description": "名称",
- "type": "string"
- },
- "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"
- }
- }
- },
- "request.AddTextReq": {
- "type": "object",
- "required": [
- "content",
- "locomotiveNumber"
- ],
- "properties": {
- "content": {
- "description": "音频名称",
- "type": "string"
- },
- "id": {
- "type": "integer"
- },
- "locomotiveNumber": {
- "description": "机车号",
- "type": "string"
- }
- }
- },
- "request.BatchProcessAudio": {
- "type": "object",
- "required": [
- "ids"
- ],
- "properties": {
- "ids": {
- "type": "array",
- "items": {
- "type": "integer"
- }
- }
- }
- },
- "request.FollowReq": {
- "type": "object",
- "required": [
- "id"
- ],
- "properties": {
- "id": {
- "type": "integer"
- }
- }
- },
- "request.ProcessAudio": {
- "type": "object",
- "required": [
- "id"
- ],
- "properties": {
- "fileType": {
- "type": "integer"
- },
- "id": {
- "type": "integer"
- }
- }
- },
- "response.FollowResp": {
- "type": "object",
- "properties": {
- "followStatus": {
- "description": "1 已关注 2未关注",
- "allOf": [
- {
- "$ref": "#/definitions/constvar.BoolType"
- }
- ]
- }
- }
- },
- "response.PreLoadPathResp": {
- "type": "object",
- "properties": {
- "preLoadPath": {
- "type": "string"
- }
- }
- },
- "util.Response": {
- "type": "object",
- "properties": {
- "code": {
- "type": "integer"
- },
- "data": {},
- "msg": {
- "type": "string"
- }
- }
- },
- "util.ResponseList": {
- "type": "object",
- "properties": {
- "code": {
- "type": "integer"
- },
- "data": {},
- "msg": {
- "type": "string"
- },
- "page": {
- "type": "integer"
- },
- "pageSize": {
- "type": "integer"
- },
- "total": {
- "type": "integer"
- }
- }
- }
- }
- }
|