From e1c07dc3af8d32620363b6ce42c54c84a28d54f8 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期一, 16 十二月 2024 18:03:27 +0800 Subject: [PATCH] 新增加管理后台售后模块接口 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopController.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopController.java index 60c9d7f..ecb2180 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopController.java @@ -80,7 +80,7 @@ shop.setCustomOrderNumber(0); shopService.save(shop); - LoginUser loginUserApplet = tokenService.getLoginUserApplet(); + LoginUser loginUserApplet = tokenService.getLoginUser(); AppUserShop appUserShop = new AppUserShop(); appUserShop.setAppUserId(loginUserApplet.getUserid()); appUserShop.setShopId(shop.getId()); @@ -107,7 +107,7 @@ } @PutMapping("/editShop") - @ApiOperation(value = "门店管理-编辑门店", tags = {"管理后台"}) + @ApiOperation(value = "门店管理-编辑门店", tags = {"管理后台-门店管理"}) public R<Void> editShop(@RequestBody Shop shop){ shopService.updateById(shop); return R.ok(); -- Gitblit v1.7.1