新增更新购物车购买数量接口

This commit is contained in:
laodaming
2023-09-14 15:46:37 +08:00
parent b71141807b
commit 0bb11f975d
7 changed files with 52 additions and 11 deletions

View File

@@ -48,8 +48,8 @@ type DeleteCartReq {
}
//修改购物车购买数量
type ModifyCartPurchaseQuantityReq {
Id int64 `json:"id"` //购物车id
Quantity int64 `json:"quantity"` //数量
Id int64 `json:"id"` //购物车id
PurchaseQuantity int64 `json:"purchase_quantity"` //数量
}
//获取购物车列表
type GetCartsReq {