| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117 |
- {
- "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/export": {
- "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/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"
- }
- }
- }
- }
- }
|