1、基本信息

  (1)请求方法: http post

  (2)请求地址: http://{hostname}/suptruck/check/index

  (3)说明: 车辆验收-首页列表

  (4)对应UI界面:车辆验收首页


2、请求参数

名称 数据类型 说明 是否必填
warehouseInNo String 进仓编号
status String 验收状态
sortBy String 排序字段
截单日期: docCloseDate
截关日期: customsCloseDate
开航日期: etd
入货时间: ewhContactDate
委托时间:createDate
sortOrder String 排序
1)升序:asc
2)降序:desc


3、请求示例

  1. {
  2. "warehouseInNo": null,
  3. "sortBy": "customsCloseDate",
  4. "sortOrder": "desc"
  5. }


4、响应参数

名称 数据类型 说明
code Integer code
msg String 提示信息
timestamp String 时间戳
data Array Json对象
- loadingPlanId Long 监装计划id
- warehouseInNo String 进仓编号
- skuNum Integer 货物总数
- checkNum Integer 已验收数
- checkTotal Integer 需验收总数
- etd String 开航日期
- customsCloseDate String 截关日期
- docCloseDate String 截单日期
- checkStatus String 验收状态
10: 预收
20: 未验收
30: 已验收


5、响应示例

  1. {
  2. "total": 2,
  3. "data": [
  4. {
  5. "loadingPlanId": "1651034738850406400",
  6. "warehouseInNo": "GHTGLY2304250008",
  7. "skuNum": 1,
  8. "checkNum": null,
  9. "checkTotal": null,
  10. "etd": null,
  11. "customsCloseDate": "2023-04-25 19:28:18",
  12. "docCloseDate": "2023-04-25 19:28:18",
  13. "checkStatus": null
  14. },
  15. {
  16. "loadingPlanId": "1650834339107315712",
  17. "warehouseInNo": "GHTGLY2304250008",
  18. "skuNum": 0,
  19. "checkNum": null,
  20. "checkTotal": null,
  21. "etd": null,
  22. "customsCloseDate": "2023-04-25 19:28:18",
  23. "docCloseDate": "2023-04-25 19:28:18",
  24. "checkStatus": null
  25. }
  26. ],
  27. "code": 100,
  28. "msg": "查询成功",
  29. "timestamp": "2023-04-26 20:39:59"
  30. }
备注
  • 更多返回错误代码请看首页的错误代码描述