| | |
| | | } |
| | | |
| | | @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)); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |