| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- definitions:
- constvar.AudioStatus:
- enum:
- - 0
- - 1
- - 2
- - 3
- - 4
- type: integer
- x-enum-comments:
- AudioStatusFailed: 处理失败
- AudioStatusFinish: 处理完成
- AudioStatusProcessing: 处理中
- AudioStatusUploadOk: 上传成功 待处理
- AudioStatusUploading: 上传中
- x-enum-varnames:
- - AudioStatusUploading
- - AudioStatusUploadOk
- - AudioStatusProcessing
- - AudioStatusFinish
- - AudioStatusFailed
- constvar.BoolType:
- enum:
- - 1
- - 2
- type: integer
- x-enum-comments:
- BoolTypeFalse: "false"
- BoolTypeTrue: "true"
- x-enum-varnames:
- - BoolTypeTrue
- - BoolTypeFalse
- gorm.DeletedAt:
- properties:
- time:
- type: string
- valid:
- description: Valid is true if Time is not NULL
- type: boolean
- type: object
- models.Audio:
- properties:
- audioStatus:
- allOf:
- - $ref: '#/definitions/constvar.AudioStatus'
- description: 音频状态
- createdAt:
- type: string
- deletedAt:
- $ref: '#/definitions/gorm.DeletedAt'
- driverNumber:
- description: 司机号
- type: string
- id:
- type: integer
- isFollowed:
- allOf:
- - $ref: '#/definitions/constvar.BoolType'
- description: 是否关注 1关注 2未关注
- locomotiveNumber:
- description: 机车号
- type: string
- name:
- description: 音频名称
- type: string
- occurrenceTime:
- type: string
- size:
- description: 音频大小
- type: integer
- stationNumber:
- description: 车站号
- type: string
- trainNumber:
- description: 车次
- type: string
- updatedAt:
- type: string
- type: object
- request.ProcessAudio:
- properties:
- id:
- type: integer
- required:
- - id
- type: object
- util.Response:
- properties:
- code:
- type: integer
- data: {}
- msg:
- type: string
- type: object
- util.ResponseList:
- properties:
- code:
- type: integer
- data: {}
- msg:
- type: string
- page:
- type: integer
- pageSize:
- type: integer
- total:
- type: integer
- type: object
- info:
- contact: {}
- paths:
- /api-sa/v1/audio/list:
- get:
- parameters:
- - description: 司机号
- in: query
- name: driverNumber
- type: string
- - description: 关键字
- in: query
- name: keyword
- type: string
- - description: 机车号
- in: query
- name: locomotiveNumber
- type: string
- - description: 页码
- in: query
- name: page
- type: integer
- - description: 每页大小
- in: query
- name: pageSize
- type: integer
- - description: 车站号
- in: query
- name: stationNumber
- type: string
- - description: 车次
- in: query
- name: trainNumber
- type: string
- produces:
- - application/json
- responses:
- "200":
- description: 成功
- schema:
- allOf:
- - $ref: '#/definitions/util.ResponseList'
- - properties:
- data:
- items:
- $ref: '#/definitions/models.Audio'
- type: array
- type: object
- summary: 音频分析检索
- tags:
- - 音频
- /api-sa/v1/audio/process:
- post:
- parameters:
- - description: 音频信息
- in: body
- name: object
- required: true
- schema:
- $ref: '#/definitions/request.ProcessAudio'
- produces:
- - application/json
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/util.Response'
- summary: 处理音频
- tags:
- - 音频
- /api-sa/v1/audio/upload:
- post:
- parameters:
- - description: 音频文件
- in: formData
- name: file
- required: true
- type: file
- produces:
- - application/json
- responses:
- "200":
- description: 成功
- schema:
- $ref: '#/definitions/util.Response'
- summary: 上传音频
- tags:
- - 音频
- swagger: "2.0"
|