Commit a4ed4566 authored by zhuxiao's avatar zhuxiao
Browse files

修改微信V3接口支付通知返回信息

parent a7231b5b
...@@ -152,7 +152,11 @@ public class WxpayChannelNoticeService extends AbstractChannelNoticeService { ...@@ -152,7 +152,11 @@ public class WxpayChannelNoticeService extends AbstractChannelNoticeService {
throw ResponseException.buildText("API_VERSION ERROR"); throw ResponseException.buildText("API_VERSION ERROR");
} }
ResponseEntity okResponse = textResp("SUCCESS"); JSONObject resJSON = new JSONObject();
resJSON.put("code", "SUCCESS");
resJSON.put("message", "成功");
ResponseEntity okResponse = jsonResp(resJSON);
channelResult.setResponseEntity(okResponse); //响应数据 channelResult.setResponseEntity(okResponse); //响应数据
return channelResult; return channelResult;
......
Supports Markdown
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