From a41bb438506c3c8072062f50279efb6c889699c9 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期一, 09 十二月 2024 18:02:31 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 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 f35126a..17f892f 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
@@ -6,6 +6,7 @@
 import com.ruoyi.common.core.web.controller.BaseController;
 import com.ruoyi.common.core.web.page.TableDataInfo;
 import com.ruoyi.common.security.service.TokenService;
+import com.ruoyi.other.api.domain.Technician;
 import com.ruoyi.other.api.domain.TechnicianScore;
 import com.ruoyi.other.service.TechnicianScoreService;
 import com.ruoyi.other.service.TechnicianService;
@@ -99,9 +100,16 @@
      */
     @GetMapping("/technicianListByShopId")
     @ApiOperation(value = "技师列表", tags = {"技师列表-小程序"})
-    public R<TableDataInfo<TechnicianVO>> technicianListByShopId(@ApiParam("门店id") @RequestParam Long shopId) {
+    public R<TableDataInfo<TechnicianVO>> technicianListByShopId(@ApiParam("门店id") @RequestParam Long shopId,@ApiParam("技师姓名") String name) {
         startPage();
-        return R.ok(getDataTable(technicianService.getTechnicianListByShopId(shopId)));
+        return R.ok(getDataTable(technicianService.getTechnicianListByShopId(shopId,name)));
+    }
+
+    @GetMapping("/getById")
+    @ApiOperation(value = "技师详情", tags = {"技师详情-小程序"})
+    public R<Technician> getById(@RequestParam("id") Integer id){
+        Technician byId = technicianService.getById(id);
+        return R.ok(byId);
     }
 
     /**

--
Gitblit v1.7.1