🎨 修正几个字段类型错误的问题
This commit is contained in:
@@ -43,7 +43,7 @@ public class WaybillGoodsInfo implements Serializable {
|
||||
* </pre>
|
||||
*/
|
||||
@SerializedName("goods_name")
|
||||
private Long goodsName;
|
||||
private String goodsName;
|
||||
|
||||
/**
|
||||
* 商品图片URL
|
||||
@@ -52,7 +52,7 @@ public class WaybillGoodsInfo implements Serializable {
|
||||
* </pre>
|
||||
*/
|
||||
@SerializedName("goods_img_url")
|
||||
private Integer goodsImgUrl;
|
||||
private String goodsImgUrl;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -184,7 +184,7 @@ public class WxPayRefundNotifyV3Result implements Serializable {
|
||||
* </pre>
|
||||
*/
|
||||
@SerializedName(value = "refund")
|
||||
private String refund;
|
||||
private Integer refund;
|
||||
/**
|
||||
* <pre>
|
||||
* 字段名:用户支付金额
|
||||
@@ -210,6 +210,6 @@ public class WxPayRefundNotifyV3Result implements Serializable {
|
||||
* </pre>
|
||||
*/
|
||||
@SerializedName(value = "payer_refund")
|
||||
private String payerRefund;
|
||||
private Integer payerRefund;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user