文档
测试

获取购物车列表

GET
http://localhost:8080/rlg/cart/add

接口描述

获取列表

请求参数

参数名
类型
描述
必填
pid
Integer
商品id
必填
num
Integer
商品数量
必填

响应参数

参数名
类型
描述
必填
code
Intrger
接口请求状态码
必填
msg
String
接口请求返回信息
可选
data
String
接口请求返回数据
可选

成功的返回示例

{ "code": 200, "data": { "records": [ { "id": 125, "userId": 37, "productId": 10004, "quantity": 100, "checked": 1, "subtitle": "4", "mainImage": "4", "price": 4.00, "stock": 10 }, { "id": 152, "userId": 37, "productId": 10000, "quantity": 100, "checked": 1, "subtitle": "最好吃的神奇的苹果", "mainImage": "https://img.yzcdn.cn/public_files/2017/10/24/e5a5a02309a41f9f5def56684808d9ae.jpeg", "price": 1.00, "stock": 100 } ], "total": 2, "size": 5, "current": 1, "orders": [], "optimizeCountSql": true, "hitCount": false, "countId": null, "maxLimit": null, "searchCount": true, "pages": 1 } }

失败的返回示例

{ "code": 202, "msg": "商品已下架" }