微信V2退款【退款代金券ID】类型错误修正

This commit is contained in:
egzosn
2021-10-18 21:10:47 +08:00
parent f4d689d6ba
commit 6e75b72428
2 changed files with 9 additions and 11 deletions

View File

@@ -5,18 +5,16 @@
<parent>
<artifactId>pay-java-parent</artifactId>
<groupId>com.egzosn</groupId>
<version>2.14.3</version>
<version>2.14.3-b</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>pay-java-web-support</artifactId>
<description>Pay Java Web 相关支持</description>
<properties>
<spring.version>4.3.4.RELEASE</spring.version>
<junit.version>4.10</junit.version>
<hibernate.version>4.3.6.Final</hibernate.version>
</properties>
<properties>
<servlet-api.version>4.0.1</servlet-api.version>
</properties>
<dependencies>
<dependency>
@@ -26,10 +24,10 @@
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
<version>${servlet-api.version}</version>
</dependency>
</dependencies>

View File

@@ -199,7 +199,7 @@ public class WxRefundResult extends BaseRefundResult {
* 这里只接收0的其余请自行获取
*/
@JSONField(name = "coupon_refund_id_0")
private Integer couponRefundId0;
private String couponRefundId0;
/**
* 获取退款请求结果状态码
*
@@ -480,11 +480,11 @@ public class WxRefundResult extends BaseRefundResult {
this.couponRefundCount = couponRefundCount;
}
public Integer getCouponRefundId0() {
public String getCouponRefundId0() {
return couponRefundId0;
}
public void setCouponRefundId0(Integer couponRefundId0) {
public void setCouponRefundId0(String couponRefundId0) {
this.couponRefundId0 = couponRefundId0;
}