12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- definitions:
- base.HTTPError:
- properties:
- code:
- example: 500
- format: int
- type: integer
- message:
- example: status bad request
- type: string
- type: object
- v1.ExcessiveImgBody:
- properties:
- ecode:
- description: 超标数据编号
- type: string
- imageBase64:
- description: 图片
- type: string
- mn:
- type: string
- required:
- - mn
- type: object
- v1.ExcessiveImgResponse:
- properties:
- code:
- default: 0
- description: 返回码
- format: int
- type: integer
- message:
- default: success
- description: 消息
- type: string
- type: object
- info:
- contact: {}
- license: {}
- paths:
- /dust_excessive_img:
- post:
- consumes:
- - application/json
- description: 扬尘超标数据图片
- parameters:
- - description: sn
- in: body
- name: body
- required: true
- schema:
- $ref: '#/definitions/v1.ExcessiveImgBody'
- produces:
- - application/json
- responses:
- "200":
- description: OK
- schema:
- $ref: '#/definitions/v1.ExcessiveImgResponse'
- "500":
- description: Internal Server Error
- schema:
- $ref: '#/definitions/base.HTTPError'
- summary: 扬尘超标数据图片
- tags:
- - 扬尘超标数据图片
- swagger: "2.0"
|