Commit a06a0b8d by chongfu.liang

甩手

parent 35f621bc
...@@ -151,7 +151,7 @@ public class OrderCallBackMQService { ...@@ -151,7 +151,7 @@ public class OrderCallBackMQService {
private OrderInfoReqs getOrderInfoReqs(OrderCallBackRequestVo body) { private OrderInfoReqs getOrderInfoReqs(OrderCallBackRequestVo body) {
// 订单所有状态正常变化通知通知开放平台 // 订单所有状态正常变化通知通知开放平台
if (!ObjectUtils.equals("1", body.getMsgType()) || body.getOperateType() == null || body.getOperateType() == 0) { if ((!ObjectUtils.equals("1", body.getMsgType()) && !ObjectUtils.equals("3", body.getMsgType())) || body.getOperateType() == null || body.getOperateType() == 0) {
return null; return null;
} }
OrderInfoReqs orderInfoReqs = null; OrderInfoReqs orderInfoReqs = null;
......
...@@ -28,7 +28,7 @@ public class OrderCallBackRequestVo { ...@@ -28,7 +28,7 @@ public class OrderCallBackRequestVo {
* 2 未支付超时关单 * 2 未支付超时关单
*/ */
private Integer delayMsgEventType; private Integer delayMsgEventType;
//操作类型 0= 其他信息修改,1=订单正向操作,2=订单逆向操作 //操作类型 0= 其他信息修改,1=订单正向操作,2=订单逆向操作,3=通知消息
private Integer operateType; private Integer operateType;
//渠道编号 //渠道编号
private Integer orderClient; private Integer orderClient;
...@@ -47,6 +47,7 @@ public class OrderCallBackRequestVo { ...@@ -47,6 +47,7 @@ public class OrderCallBackRequestVo {
* 消息类型 * 消息类型
1. 1订单所有状态正常变化通知 1. 1订单所有状态正常变化通知
2. 2超时订单 2. 2超时订单
3. 3通知
*/ */
private String msgType; private String msgType;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment