1
0
mirror of synced 2025-12-16 03:57:56 +08:00

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

This commit is contained in:
zhangyulai
2022-05-29 22:23:54 +08:00
committed by GitHub
parent 95be03bf1c
commit e7054aab0e
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;
}