| | |
| | | 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 = "可拜访内部人员") |