Authored by LUOXC

update

... ... @@ -17,6 +17,7 @@
| order.deliveryAddress | 用户修改收货地址 |
| erp.deliveryAddressUpdate | 客服修改收货地址 |
| [erp.updateInvoicePdfUrl](#更新电子发票开票信息) | 更新电子发票开票信息 |
| [order.updateExpressInfo](#更新物流信息) | 更新物流信息 |
## 发布消息到监控系统
... ... @@ -464,4 +465,33 @@
"invoiceType": "1" //开票方式 0:蓝票, 1:红票
}
```
\ No newline at end of file
```
## 更新物流信息
### MQ消息数据结构
| 参数 | 值 |
| :-- | :-- |
| exchanges | amq.topic |
| route key | order.updateExpressInfo |
```json
{
"uid": 8050310,
"acceptAddress":"郑州市",
"acceptRemark":"快件在 郑州总集散中心 ,准备送往下一站",
"businessType":1,
"createTime":1483387378,
"dealWithCost":0,
"id":26827984,
"logisticsType":23,
"orderCode":1718050455,
"state":0,
"uniqueKey":"15415544bd03c309e7f44919d5b926a4",
"waybillCode":"612037714591"
}
```
... ...