#### 更新购物车
~~~[api]
post:/cart/updateGoodsCart
id=1#购物车id(int)
userId=3191#用户id(int)
childGoodsId=1234#商品详细id(string)
count =10#数量(int)
price=1.05#单价(double)
totalPrice=10.5#总价(double)
<<<
success
{
"retCode": 0,
"retMsg": "success",
"responseInfo": {
unitPrice,
totalPrice,
inventory
}
}
<<<
error
{
"retCode": !0,
"retMsg": "errMsg"
}
~~~