Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static class GoodsItem {
* </pre>
*/
@SerializedName("goods_name")
private Long goodsName;
private String goodsName;

/**
* 商品图片URL
Expand All @@ -52,7 +52,7 @@ public static class GoodsItem {
* </pre>
*/
@SerializedName("goods_img_url")
private Integer goodsImgUrl;
private String goodsImgUrl;


}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public static class Amount implements Serializable {
* </pre>
*/
@SerializedName(value = "refund")
private String refund;
private Integer refund;
/**
* <pre>
* 字段名:用户支付金额
Expand All @@ -210,6 +210,6 @@ public static class Amount implements Serializable {
* </pre>
*/
@SerializedName(value = "payer_refund")
private String payerRefund;
private Integer payerRefund;
}
}