| | |
| | | * @Author : Rk |
| | | * @create 2024/7/10 14:03 |
| | | */ |
| | | @Api(tags = "客户端小程序用户业务") |
| | | @Api(tags = "【C端小程序】用户业务") |
| | | @Trace(exclude = true) |
| | | @RestController |
| | | @RequestMapping("/web/customer") |
| | |
| | | } |
| | | |
| | | @LoginRequired |
| | | @ApiOperation("门店列表") |
| | | @ApiOperation(value = "门店列表", notes = "客户端小程序") |
| | | @PostMapping("/shopPage") @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), |
| | | }) |
| | |
| | | |
| | | |
| | | @LoginRequired |
| | | @ApiOperation("门店详情") |
| | | @ApiOperation(value = "门店详情", notes = "客户端小程序") |
| | | @GetMapping("/shopDetail") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), |
| | |
| | | } |
| | | |
| | | @LoginRequired |
| | | @ApiOperation("导购详情") |
| | | @ApiOperation(value = "导购详情", notes = "客户端小程序") |
| | | @GetMapping("/usersDetail") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), |
| | |
| | | return ApiResponse.success(usersService.usersDetail(userId)); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |