Commit 72bea98c authored by jiaorz's avatar jiaorz

添加积分消息队列接口

parent 99f76038
...@@ -142,7 +142,7 @@ public class OrderPayBiz extends BaseBiz<OrderPayMapper,OrderPay> { ...@@ -142,7 +142,7 @@ public class OrderPayBiz extends BaseBiz<OrderPayMapper,OrderPay> {
if(num>0){ if(num>0){
//支付成功,添加积分 //支付成功,添加积分
OrderPay pay= list.get(0); OrderPay pay= list.get(0);
OrderPay newValue = mapper.selectOneByExample(orderPay); OrderPay newValue = mapper.selectOne(orderPay);
log.info("支付回调信息:newValue = {}", newValue); log.info("支付回调信息:newValue = {}", newValue);
if(newValue.getStatus() == 1) { if(newValue.getStatus() == 1) {
JSONObject jsonObject = new JSONObject(); JSONObject jsonObject = new JSONObject();
......
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