From 1364b5595d2d9d0cfe0bb5c1f0eb825679b7561a Mon Sep 17 00:00:00 2001
From: phpcjl <phpcjl@gmail.com>
Date: 星期一, 25 十一月 2024 18:37:01 +0800
Subject: [PATCH] 1.完善swagger配置配置信息 2.shop实体类添加字段:1.封面图 2.详情图 3.添加购物车实体类、mapper、service、controller

---
 ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TechnicianController.java |   34 ++++++++++++++++++++++++++++++++--
 1 files changed, 32 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 9a0c750..e7ff8cd 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
@@ -1,9 +1,20 @@
 package com.ruoyi.other.controller;
 
 
+import com.ruoyi.common.core.domain.R;
+import com.ruoyi.common.core.web.controller.BaseController;
+import com.ruoyi.other.service.TechnicianService;
+import com.ruoyi.other.vo.TechnicianDetailVO;
+import com.ruoyi.other.vo.TechnicianVO;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.RequestMapping;
-
+import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.bind.annotation.RestController;
+
+import javax.annotation.Resource;
+import java.util.List;
 
 /**
  * <p>
@@ -15,7 +26,26 @@
  */
 @RestController
 @RequestMapping("/technician")
-public class TechnicianController {
+public class TechnicianController extends BaseController {
+    @Resource
+    private TechnicianService technicianService;
 
+    /**
+     * 指定门店技师列表
+     */
+    @GetMapping("/technicianListByShopId")
+    @ApiOperation(value = "技师列表", tags = {"技师列表-小程序"})
+    public R<List<TechnicianVO>> technicianListByShopId(@ApiParam("门店id") @RequestParam Long shopId) {
+        return R.ok(technicianService.getTechnicianListByShopId(shopId));
+    }
+
+    /**
+     * 技师详情
+     */
+    @GetMapping("/technicianDetail")
+    @ApiOperation(value = "技师详情", tags = {"技师详情-小程序"})
+    public R<TechnicianDetailVO> technicianDetail(@ApiParam("技师id") @RequestParam Long technicianId) {
+        return R.ok(technicianService.technicianDetail(technicianId));
+    }
 }
 

--
Gitblit v1.7.1