#### 获取购物车列表
~~~[api]
post:/cart/queryGoodsCartList
userId=3191#用户id(int)
version=0.0.1#版本号(string)
pageNum=1#页码数(int)
pageSize=5#每一页数量(int)
lastChildGoodsId=3191#最后一页商品详细id
<<<
success
{
"retCode": 0,
"retMsg": "success",
"responseInfo": {
list: [{
store: {
store_name,
store_status,
point: {
description_evaluate,
service_evaluate,
ship_evaluate,
store_evaluate1
},
store_logo: {
path,
name
},
id
},
totalPrice,
goodsCartList: [{
userId,
goodsId,
goodsName,
imgPath,
property,
shipPrice,
count,
goodsPrice,
price,
totalPrice,
isValid,
status,
id,
deleteFlag
}]
}]
}
}
<<<
error
{
"retCode": !0,
"retMsg": "errMsg"
}
~~~