添加购物车新增灯光信息保存

This commit is contained in:
laodaming
2023-09-20 11:02:46 +08:00
parent 86c39263be
commit d8707e3a4a
3 changed files with 10 additions and 4 deletions

View File

@@ -109,6 +109,7 @@ type CalculateCartPriceReq {
type CalculateItem {
CartId int64 `json:"cart_id"` //购物车id
PurchaseQuantity int64 `json:"purchase_quantity"` //数量
IsSelected bool `json:"is_selected"` //是否是选中的,选中的会统计到总价中
}
type CalculateCartPriceRsp {
SubTotalPrice string `json:"sub_total_price"`