🐛 修复部分错误的参数类型

This commit is contained in:
Binary Wang 2022-06-28 11:41:27 +08:00
parent 4b3d59645e
commit 5f34a8811e

View File

@ -116,7 +116,7 @@ public class DeclarationRequest implements Serializable {
* </pre>
*/
@SerializedName(value = "duty")
private String duty;
private Integer duty;
/**
* <pre>
@ -159,7 +159,7 @@ public class DeclarationRequest implements Serializable {
* </pre>
*/
@SerializedName(value = "order_fee")
private String orderFee;
private Integer orderFee;
/**
* <pre>
@ -173,7 +173,7 @@ public class DeclarationRequest implements Serializable {
* </pre>
*/
@SerializedName(value = "transport_fee")
private String transportFee;
private Integer transportFee;
/**
* <pre>
@ -187,5 +187,5 @@ public class DeclarationRequest implements Serializable {
* </pre>
*/
@SerializedName(value = "product_fee")
private String productFee;
private Integer productFee;
}