修复查询稽核结果与稽核列表
This commit is contained in:
@@ -38,7 +38,6 @@ public class AuditResultController {
|
||||
@PostMapping("/getList")
|
||||
@ApiOperation("获取面试稽核结果列表")
|
||||
public ResponseResult<PageInfo<InterviewInspectionResultVO>> interviewInspectionResultGetList(@RequestBody GetInterviewInspectionResultListReq request) {
|
||||
PageHelper.startPage(request.getPageNum(), request.getPageSize());
|
||||
List<InterviewInspectionResultVO> interviewInspectionResultGetList = interviewInspectionService.interviewInspectionResultGetList(request);
|
||||
return ResponseResult.success(new PageInfo<>(interviewInspectionResultGetList));
|
||||
}
|
||||
|
||||
@@ -56,7 +56,6 @@ public class InterviewInspectionController {
|
||||
@PostMapping("/getList")
|
||||
@ApiOperation("获取面试稽核列表")
|
||||
public ResponseResult<PageInfo<InterviewInspectionVO>> interviewInspectionGetList(@RequestBody GetInterviewInspectionListReq request) {
|
||||
PageHelper.startPage(request.getPageNum(), request.getPageSize());
|
||||
List<InterviewInspectionVO> interviewInspectionVOList = interviewInspectionService.interviewInspectionGetList(request);
|
||||
return ResponseResult.success(new PageInfo<>(interviewInspectionVOList));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user