mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-04 20:57:47 +08:00
🐛 修复部分错误的参数类型
This commit is contained in:
parent
4b3d59645e
commit
5f34a8811e
@ -116,7 +116,7 @@ public class DeclarationRequest implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "duty")
|
@SerializedName(value = "duty")
|
||||||
private String duty;
|
private Integer duty;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
@ -159,7 +159,7 @@ public class DeclarationRequest implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "order_fee")
|
@SerializedName(value = "order_fee")
|
||||||
private String orderFee;
|
private Integer orderFee;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
@ -173,7 +173,7 @@ public class DeclarationRequest implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "transport_fee")
|
@SerializedName(value = "transport_fee")
|
||||||
private String transportFee;
|
private Integer transportFee;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
@ -187,5 +187,5 @@ public class DeclarationRequest implements Serializable {
|
|||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@SerializedName(value = "product_fee")
|
@SerializedName(value = "product_fee")
|
||||||
private String productFee;
|
private Integer productFee;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user