Commit 33bb191b by ping.wu

代码调整,删除无用代码

parent d90d4169
......@@ -368,12 +368,7 @@ public class OrderCallBackMQService {
if (Objects.isNull(body) || StringUtils.isEmpty(body.getContent())) {
return;
}
JSONObject jsonObject = JSONObject.parseObject(body.getContent());
OrderInfo orderInfo = jsonObject.toJavaObject(OrderInfo.class);
if (orderInfo == null) {
return;
}
if (OrderClientType.ALIPAY.getIndex() != orderInfo.getOrderClient()) {
if (OrderClientType.ALIPAY.getIndex() != body.getOrderClient()) {
return;
}
logUtil.info("sendzfbOrderMQ orderCode:{} ", body.getOrderCode());
......
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