"vscode:/vscode.git/clone" did not exist on "22b5a11db353efb40f5819f4f3072996888a0440"
Commit 8a1c24bc authored by macro's avatar macro
Browse files

Update OmsCartItemController.java

parent b2608286
...@@ -38,7 +38,7 @@ public class OmsCartItemController { ...@@ -38,7 +38,7 @@ public class OmsCartItemController {
return CommonResult.failed(); return CommonResult.failed();
} }
@ApiOperation("获取某个会员的购物车列表") @ApiOperation("获取当前会员的购物车列表")
@RequestMapping(value = "/list", method = RequestMethod.GET) @RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody @ResponseBody
public CommonResult<List<OmsCartItem>> list() { public CommonResult<List<OmsCartItem>> list() {
...@@ -46,7 +46,7 @@ public class OmsCartItemController { ...@@ -46,7 +46,7 @@ public class OmsCartItemController {
return CommonResult.success(cartItemList); return CommonResult.success(cartItemList);
} }
@ApiOperation("获取某个会员的购物车列表,包括促销信息") @ApiOperation("获取当前会员的购物车列表,包括促销信息")
@RequestMapping(value = "/list/promotion", method = RequestMethod.GET) @RequestMapping(value = "/list/promotion", method = RequestMethod.GET)
@ResponseBody @ResponseBody
public CommonResult<List<CartPromotionItem>> listPromotion(@RequestParam(required = false) List<Long> cartIds) { public CommonResult<List<CartPromotionItem>> listPromotion(@RequestParam(required = false) List<Long> cartIds) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment