jiangping
2024-07-15 520219f63a2ced43bfb3a02028d0a7896f0e4d2f
server/web/src/main/java/com/doumee/api/web/CustomerApi.java
@@ -32,7 +32,7 @@
 * @Author : Rk
 * @create 2024/7/10 14:03
 */
@Api(tags = "客户端小程序用户业务")
@Api(tags = "【C端小程序】用户业务")
@Trace(exclude = true)
@RestController
@RequestMapping("/web/customer")
@@ -156,7 +156,7 @@
    }
    @LoginRequired
    @ApiOperation("门店列表")
    @ApiOperation(value = "门店列表", notes = "客户端小程序")
    @PostMapping("/shopPage")   @ApiImplicitParams({
            @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true),
    })
@@ -166,7 +166,7 @@
    @LoginRequired
    @ApiOperation("门店详情")
    @ApiOperation(value = "门店详情", notes = "客户端小程序")
    @GetMapping("/shopDetail")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true),
@@ -178,7 +178,7 @@
    }
    @LoginRequired
    @ApiOperation("导购详情")
    @ApiOperation(value = "导购详情", notes = "客户端小程序")
    @GetMapping("/usersDetail")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true),
@@ -188,4 +188,7 @@
        return ApiResponse.success(usersService.usersDetail(userId));
    }
}