mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-05 13:17:46 +08:00
🎨 #1975 【微信支付】企业付款失败时的返回字段根据接口实际返回进行优化,增加额外的特殊字段
This commit is contained in:
parent
37ae6807e6
commit
2c810298f4
@ -59,6 +59,18 @@ public class EntPayResult extends BaseWxPayResult {
|
|||||||
@XStreamAlias("payment_time")
|
@XStreamAlias("payment_time")
|
||||||
private String paymentTime;
|
private String paymentTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 企业付款失败时返回的状态码.
|
||||||
|
*/
|
||||||
|
@XStreamAlias("retcode")
|
||||||
|
protected String retCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 企业付款失败时返回的信息.
|
||||||
|
*/
|
||||||
|
@XStreamAlias("retmsg")
|
||||||
|
protected String retMsg;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void loadXml(Document d) {
|
protected void loadXml(Document d) {
|
||||||
mchId = readXmlString(d, "mchid");
|
mchId = readXmlString(d, "mchid");
|
||||||
|
Loading…
Reference in New Issue
Block a user