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

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

View File

@ -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;
}
}