🎨 #3106 【微信支付】退款结果通知里退款金额等字段类型修复

This commit is contained in:
zhongjun 2023-08-08 11:00:29 +08:00 committed by GitHub
parent b373eda023
commit 71bf3a59e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,7 +199,7 @@ public class RefundNotifyResult implements Serializable {
* </pre>
*/
@SerializedName(value = "refund")
private String refund;
private Integer refund;
/**
* <pre>
@ -227,7 +227,7 @@ public class RefundNotifyResult implements Serializable {
* </pre>
*/
@SerializedName(value = "payer_refund")
private String payerRefund;
private Integer payerRefund;
}
}