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

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> * </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;
} }