1、基本信息

  (1)请求方法: http get

  (2)请求地址: http://{hostname}/suptruck/file/pic/{picId}


2、请求参数

名称 数据类型 说明 是否必填
picId Long 图片id


3、请求示例


4、响应参数

名称 数据类型 说明
code Integer code
msg String 提示信息
timestamp String 时间戳
data Object Json对象
- picId String 图片id
- picPath String 图片地址


5、响应示例

正确响应:

  1. {
  2. "msg": "操作成功",
  3. "code": 100,
  4. "data": {
  5. "picPath": "http://xxx.yyy.zz/car_9340190017349015.png",
  6. "picId": "1"
  7. },
  8. "timestamp": "2023-04-19 10:54:49"
  9. }