版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

代码块
1、入库类型为快递单:
{
    "shipMethod": 1,
    "eta": "2023-03-14 09:37:48",
    "poNoList": [
        "test030741"
    ],
    "remark": "1234567890",
    "lastMailType": 1,
    "truckType": null,
    "palletCount": null,
    "weight": null,
    "weightUnit":"KG",
    "volume": null,
    "volumeUnit":"CBM",
    "expressNoList": [
       1
    ],
    "containerInfoList": [
        {
            "containerType": null,
            "quantity": null,
            "containerNo": null
        },
        {
            "containerType": null,
            "quantity": null,
            "containerNo": null
        }
    ],
    "shipDate": "2023-03-07 15:15:48",
    "billOfLading": "提单号"
}
2、入库类型为卡车单:
{
    "shipMethod": 1,
    "eta": "2023-03-14 09:37:48",
    "poNoList": [
        "test030742test030749",
        "test030750"
    ],
    "remark": "1234567890",
    "lastMailType": 2,
    "truckType": 1,
    "palletCount": 1,
    "weight": 2,
    "weightUnit":"KG",
    "volume": 1,
    "volumeUnit":"CBM",
    "expressNoList": [
       "11231"
    ],
    "containerInfoList": [
        {
            "containerType": 5,
            "quantity": 2,
            "containerNo": 5
        },
        {
            "containerType": 4,
            "quantity": 2,
            "containerNo": 5
        }
    ],
    "shipDate": "2023-03-07 15:15:48",
    "billOfLading": "提单号"
}

...