mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-02 20:02:37 +08:00
🎨 修正几个字段类型错误的问题
This commit is contained in:
parent
95be03bf1c
commit
e7054aab0e
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user