fix
This commit is contained in:
@@ -21,6 +21,9 @@ service shopping-cart {
|
||||
//计算购物车价格
|
||||
@handler CalculateCartPriceHandler
|
||||
post /api/shopping-cart/calculate_cart_price(CalculateCartPriceReq) returns (response);
|
||||
//获取购物车数量
|
||||
@handler GetCartNumHandler
|
||||
get /api/shopping-cart/get_cart_num(request) returns (response);
|
||||
}
|
||||
|
||||
//加入购物车
|
||||
@@ -122,4 +125,8 @@ type CalculateResultItem {
|
||||
CartId int64 `json:"cart_id"` //购物车id
|
||||
ItemPrice string `json:"item_price"` //单价
|
||||
TotalPrice string `json:"total_price"` //总价
|
||||
}
|
||||
//获取购物车数量
|
||||
type GetCartNumRsp {
|
||||
TotalCount int64 `json:"total_count"`
|
||||
}
|
||||
Reference in New Issue
Block a user