Skip to content

3.7.1-料箱搬运任务添加

URL: /rcs/ctuAgvTransportAdd

描述: 3.7.1-料箱搬运任务添加

名称: ctuAgvTransportAdd

内部方法:com.galaxis.wms.connector.RCS@ctuAgvTransportAdd

内部编号: e621272f-594a-4b03-8f00-b60ac64ec190

请求

数据结构

  • reqCode string请求编号 请求编号,每个请求都要一个唯一编号,同一个请求重复提交,使用同一编号
  • reqTime string请求时间戳 请求时间戳,格式: “yyyy-MM-dd HH:mm:ss”
  • data array
    • taskNo string任务号
    • priority number优先级
    • startLocation string起始点位
    • endLocation string目标点位
    • containerCode string容器号

请求示例 1

json
{
  "reqCode": "tghol-002",
  "reqTime": "2024-03-26 12:12:10",
  "data": [
    {
      "taskNo": "TASK-24-03-26-15-000001",
      "priority": 1,
      "startLocation": "ZT00001",
      "endLocation": "LOC0001",
      "containerCode": "Z00001"
    },
    {
      "taskNo": "TASK-24-03-26-15-000002",
      "priority": 1,
      "startLocation": "ZT00002",
      "endLocation": "LOC0002",
      "containerCode": "Z00002"
    },
    {
      "taskNo": "TASK-24-03-26-15-000003",
      "priority": 1,
      "startLocation": "ZT00003",
      "endLocation": "LOC0003",
      "containerCode": "Z00003"
    }
  ]
}

响应

数据结构

  • success number状态标记 返回状态,0 表示成功、大于0表示失败
  • msg string消息 一般在success字段返回大于0的时候,返回错误信息
  • reqCode string请求编号 返回请求时的 reqCode
  • data array

响应示例 1

json
{
  "success": 0,
  "msg": "",
  "data": null,
  "reqCode": "tghol-002"
}