From f6b20962bb0453683e9366a3f87b7ec9bfaed03c Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期二, 14 一月 2025 15:18:58 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java | 20 +++++++++++++++++--- 1 files changed, 17 insertions(+), 3 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java index cac368d..32aafb7 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java @@ -50,7 +50,8 @@ private SysUserClient sysUserClient; @Resource private AppUserShopClient appUserShopClient; - + @Resource + private AppUserClient appUserClient; @@ -79,8 +80,7 @@ return R.ok(page); } - @Resource - private AppUserClient appUserClient; + @PostMapping("/manage/addorupdate") @ApiOperation(value = "添加编辑", tags = {"门店-技师列表"}) public R<Page<Technician>> add(@RequestBody Technician technician) { @@ -105,6 +105,7 @@ AppUserShop appUserShop = new AppUserShop(); appUserShop.setShopId(sysUser.getObjectId()); appUserShop.setAppUserId(appUser.getId()); + appUserShop.setRoleType(3); appUserShopClient.saveAppUserShop(appUserShop); }else { @@ -130,12 +131,21 @@ technicianService.saveOrUpdate(technician); return R.ok(); } + + + + @GetMapping("/manage/delete") @ApiOperation(value = "删除", tags = {"门店-技师列表"}) public R<Page<Technician>> delete(@RequestParam Integer id) { technicianService.removeById(id); return R.ok(); } + + + + + @GetMapping("/manage/changeStatus") @ApiOperation(value = "上下架", tags = {"门店-技师列表"}) public R<Page<Technician>> changeStatus(@RequestParam Integer id,@RequestParam@ApiParam("状态(1=下架,2=上架)") Integer status) { @@ -144,6 +154,10 @@ technicianService.updateById(byId); return R.ok(); } + + + + @GetMapping("/manage/changesubscri") @ApiOperation(value = "修改预约状态", tags = {"门店-技师列表"}) public R<Page<Technician>> changesubscri(@RequestParam Integer id,@RequestParam@ApiParam("预约状态(1=可预约,2=不可预约)") Integer subscribeStatus) { -- Gitblit v1.7.1