Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Jeepay
Commits
a4ed4566
Commit
a4ed4566
authored
Jul 02, 2021
by
zhuxiao
Browse files
修改微信V3接口支付通知返回信息
parent
a7231b5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
jeepay-payment/src/main/java/com/jeequan/jeepay/pay/channel/wxpay/WxpayChannelNoticeService.java
View file @
a4ed4566
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment