获取订单的商品信息 websocket测试 POST http://localhost:8080/portal/order/get_order_cart_product.do 响应参数 参数名 类型 描述 必填 status Integer 状态码 必填 data T 数据 必填 username String 登录成功后的管理员用户名 必填 msg String 状态信息 必填 成功的返回示例 { "status": 200, "data": { "orderItemVoList": [ { "orderNo": null, "productId": 10002, "productName": "订单是", "productImage": "2", "currentUnitPrice": 2, "quantity": 2, "totalPrice": 4, "createTime": null }, { "orderNo": null, "productId": 10003, "productName": "搜索", "productImage": "3", "currentUnitPrice": 3, "quantity": 2, "totalPrice": 6, "createTime": null } ], "imageHost": "asss", "productTotalPrice": 10 } } 失败的返回示例 ResponseCode{status=100, data=null, meg='用户登录失败'}
{ "status": 200, "data": { "orderItemVoList": [ { "orderNo": null, "productId": 10002, "productName": "订单是", "productImage": "2", "currentUnitPrice": 2, "quantity": 2, "totalPrice": 4, "createTime": null }, { "orderNo": null, "productId": 10003, "productName": "搜索", "productImage": "3", "currentUnitPrice": 3, "quantity": 2, "totalPrice": 6, "createTime": null } ], "imageHost": "asss", "productTotalPrice": 10 } }