mirror of
https://gitee.com/egzosn/pay-java-parent.git
synced 2026-09-03 05:24:28 +08:00
微信V2退款【退款代金券ID】类型错误修正
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user