Skip to content

Commit 5f34a88

Browse files
committed
🐛 修复部分错误的参数类型
1 parent 4b3d596 commit 5f34a88

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/customs/DeclarationRequest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public class DeclarationRequest implements Serializable {
116116
* </pre>
117117
*/
118118
@SerializedName(value = "duty")
119-
private String duty;
119+
private Integer duty;
120120

121121
/**
122122
* <pre>
@@ -159,7 +159,7 @@ public class DeclarationRequest implements Serializable {
159159
* </pre>
160160
*/
161161
@SerializedName(value = "order_fee")
162-
private String orderFee;
162+
private Integer orderFee;
163163

164164
/**
165165
* <pre>
@@ -173,7 +173,7 @@ public class DeclarationRequest implements Serializable {
173173
* </pre>
174174
*/
175175
@SerializedName(value = "transport_fee")
176-
private String transportFee;
176+
private Integer transportFee;
177177

178178
/**
179179
* <pre>
@@ -187,5 +187,5 @@ public class DeclarationRequest implements Serializable {
187187
* </pre>
188188
*/
189189
@SerializedName(value = "product_fee")
190-
private String productFee;
190+
private Integer productFee;
191191
}

0 commit comments

Comments
 (0)