🎨 修正几个字段类型错误的问题

This commit is contained in:
zhangyulai 2022-05-29 22:23:54 +08:00 committed by GitHub
parent 95be03bf1c
commit e7054aab0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ public class WaybillGoodsInfo implements Serializable {
* </pre> * </pre>
*/ */
@SerializedName("goods_name") @SerializedName("goods_name")
private Long goodsName; private String goodsName;
/** /**
* 商品图片URL * 商品图片URL
@ -52,7 +52,7 @@ public class WaybillGoodsInfo implements Serializable {
* </pre> * </pre>
*/ */
@SerializedName("goods_img_url") @SerializedName("goods_img_url")
private Integer goodsImgUrl; private String goodsImgUrl;
} }

View File

@ -184,7 +184,7 @@ public class WxPayRefundNotifyV3Result implements Serializable {
* </pre> * </pre>
*/ */
@SerializedName(value = "refund") @SerializedName(value = "refund")
private String refund; private Integer refund;
/** /**
* <pre> * <pre>
* 字段名用户支付金额 * 字段名用户支付金额
@ -210,6 +210,6 @@ public class WxPayRefundNotifyV3Result implements Serializable {
* </pre> * </pre>
*/ */
@SerializedName(value = "payer_refund") @SerializedName(value = "payer_refund")
private String payerRefund; private Integer payerRefund;
} }
} }