Commit df113c6b authored by yinjiacheng's avatar yinjiacheng

fix SHQBD-558 商品库存量和已售量数据类型修改为Long

parent fc01f5e6
......@@ -33,7 +33,7 @@ data class Goods(
@SerializedName("goods_spu_id")
val goodsSpuId: String,
@SerializedName("inventory_rest")
val inventoryRest: Int,
val inventoryRest: Long,
@SerializedName("online_status")
val onlineStatus: Int,
@SerializedName("original_price")
......@@ -41,7 +41,7 @@ data class Goods(
@SerializedName("price")
val price: Double,
@SerializedName("total_amount_sold")
val totalAmountSold: Int
val totalAmountSold: Long
)
data class Status(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment