| | |
| | | * @create 2023/12/28 14:31 |
| | | */ |
| | | |
| | | @Api(tags = "【公众号】内部劳务人员") |
| | | @Api(tags = "【公众号】内部人员") |
| | | @Trace(exclude = true) |
| | | @RestController |
| | | @RequestMapping(Constants.CLOUD_SERVICE_URL_INDEX+"/web/member") |
| | |
| | | return ApiResponse.success(visitsService.taskCenter(pageWrap)); |
| | | } |
| | | |
| | | @ApiOperation("访客记录详情") |
| | | @GetMapping("/visitDetail") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), |
| | | @ApiImplicitParam(paramType = "query", dataType = "Integer", name = "id", value = "记录主键", required = true) |
| | | }) |
| | | public ApiResponse<VisitDetailVO> visitDetail (@RequestParam Integer id) { |
| | | return ApiResponse.success(visitsService.getVisitDetail(id)); |
| | | } |
| | | // @ApiOperation("访客记录详情") |
| | | // @GetMapping("/visitDetail") |
| | | // @ApiImplicitParams({ |
| | | // @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), |
| | | // @ApiImplicitParam(paramType = "query", dataType = "Integer", name = "id", value = "记录主键", required = true) |
| | | // }) |
| | | // public ApiResponse<VisitDetailVO> visitDetail (@RequestParam Integer id) { |
| | | // return ApiResponse.success(visitsService.getVisitDetail(id)); |
| | | // } |
| | | |
| | | |
| | | @ApiOperation(value = "人员分页",notes = "可拜访内部人员") |