Commit df113c6b authored by yinjiacheng's avatar yinjiacheng

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

parent fc01f5e6
...@@ -33,7 +33,7 @@ data class Goods( ...@@ -33,7 +33,7 @@ data class Goods(
@SerializedName("goods_spu_id") @SerializedName("goods_spu_id")
val goodsSpuId: String, val goodsSpuId: String,
@SerializedName("inventory_rest") @SerializedName("inventory_rest")
val inventoryRest: Int, val inventoryRest: Long,
@SerializedName("online_status") @SerializedName("online_status")
val onlineStatus: Int, val onlineStatus: Int,
@SerializedName("original_price") @SerializedName("original_price")
...@@ -41,7 +41,7 @@ data class Goods( ...@@ -41,7 +41,7 @@ data class Goods(
@SerializedName("price") @SerializedName("price")
val price: Double, val price: Double,
@SerializedName("total_amount_sold") @SerializedName("total_amount_sold")
val totalAmountSold: Int val totalAmountSold: Long
) )
data class Status( 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