移除购物车选中的产品 websocket测试 POST http://localhost:8080/portal/cart/list.do 响应参数 参数名 类型 描述 必填 status Integer 状态码 可选 data T 数据 可选 id Integer 购物车id 必填 user_id String 用户id 必填 product_id Integer 商品id 必填 quantity Integer 必填 check Integer 是否全选 必填 updateTime Date 更新时间 必填 createTime Date 创建时间 必填 product_name String 商品名称 必填 msg String 状态信息 可选 成功的返回示例 { "status":200, "data":{ "id":12, "username":"aaa", "email":"aaa@126.com", "phone":null, "createTime":1222, "updateTime":1222 } } 失败的返回示例 { "status": 100, "msg": "用户名不能为空" } 失败返回示例2 { "status": 101, "msg": "用户名不存在" } 失败返回示例3 { "status": 100, "msg": "密码不能为空" } 失败返回示例4 { "status":1, "msg":"密码错误" }
{ "status":200, "data":{ "id":12, "username":"aaa", "email":"aaa@126.com", "phone":null, "createTime":1222, "updateTime":1222 } }