chufengma / b2b

0 stars 0 forks source link

淘物流 #12

Open chufengma opened 7 years ago

chufengma commented 7 years ago

获取二级数据

 goods.put("钢材", Arrays.asList("PC钢棒", "金属粉末", "优特钢", "型材", "线材", "盘螺", "螺纹钢", "管材", "钢板", "炉料", "有色金属", "钢培", "钢卷", "圆钢", "废金属"));
        goods.put("塑料", Arrays.asList("塑料粒子"));
        goods.put("机械", Arrays.asList("汽车", "开平机"));
        goods.put("石材", Arrays.asList("水泥", "方砖"));
        goods.put("化工原料", Arrays.asList("煤炭"));
        goods.put("木材", Arrays.asList("木材"));

新增淘物流请求

POST  logistics/logisticsRequest
---
public String startPoint; // 起点 精确到区
public String endPoint; // 终点 精确到区
public String tel; // 联系方式
public String goods1; // 货物1
public String goods1Count; // 货物1数量
public String goods2; // 非必须
public String goods2Count; // 非必须
public String goods3; // 非必须
public String goods3Count; //非必须
public String goods4; //非必须
public String goods4Count; //非必须
public String sepcCommand = ""; // 特殊需求 以 『|』分隔 例如:含税|自卸车 非必须
public String comment = "";// 备注  非必须
--- 

获取最新物流请求

Get logistics/latestLogisticsRequests
---
---
{
  "data": [
    {
      "comment": "asdfasdf",
      "endCity": "贵州 ",
      "endPoint": "woS4K1Vk",
      "goods": "[{\"count\":8889,\"name\":\"啊哈 哈哈哈\"}]",
      "id": 6,
      "pushTime": 1487602330598,
      "specCommand": "",
      "startCity": "河南 ",
      "startPoint": "rjVszlhd",
      "status": 0,
      "tel": "18355551276"
    },
    {
      "comment": "asdfasdf",
      "endCity": "贵州 ",
      "endPoint": "woS4K1Vk",
      "goods": "[{\"count\":8889,\"name\":\"啊哈 哈哈哈\"}]",
      "id": 7,
      "pushTime": 1487602330598,
      "specCommand": "",
      "startCity": "河南 ",
      "startPoint": "rjVszlhd",
      "status": 0,
      "tel": "18355551276"
    },
    {
      "comment": "asdfasdf",
      "endCity": "贵州 ",
      "endPoint": "woS4K1Vk",
      "goods": "[{\"count\":8889,\"name\":\"啊哈 哈哈哈\"}]",
      "id": 5,
      "pushTime": 1487602330598,
      "specCommand": "",
      "startCity": "河南 ",
      "startPoint": "rjVszlhd",
      "status": 0,
      "tel": "18355551276"
    },
    {
      "comment": "asdfasdf",
      "endCity": "贵州 ",
      "endPoint": "woS4K1Vk",
      "goods": "[{\"count\":8889,\"name\":\"啊哈 哈哈哈\"}]",
      "id": 10,
      "pushTime": 1487602330598,
      "specCommand": "",
      "startCity": "河南 ",
      "startPoint": "rjVszlhd",
      "status": 0,
      "tel": "18355551276"
    },
    {
      "comment": "asdfasdf",
      "endCity": "贵州 ",
      "endPoint": "woS4K1Vk",
      "goods": "[{\"count\":8889,\"name\":\"啊哈 哈哈哈\"}]",
      "id": 11,
      "pushTime": 1487602330598,
      "specCommand": "",
      "startCity": "河南 ",
      "startPoint": "rjVszlhd",
      "status": 0,
      "tel": "18355551276"
    }
  ],
  "errorMsg": "",
  "status": 0
}
---