|
|
@@ -3,6 +3,7 @@ package com.zhongzheng.controller.recruit;
|
|
|
import java.util.List;
|
|
|
import java.util.Arrays;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
|
|
|
import com.zhongzheng.common.utils.ServletUtils;
|
|
|
import com.zhongzheng.framework.web.service.WxTokenService;
|
|
|
import com.zhongzheng.modules.recruit.bo.RecruitInterviewAddBo;
|
|
|
@@ -50,7 +51,7 @@ public class RecruitInterviewController extends BaseController {
|
|
|
/**
|
|
|
* 查询招聘面试关联列表
|
|
|
*/
|
|
|
- @ApiOperation("查询投递面试列表")
|
|
|
+ @ApiOperation("查询邀请面试列表")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo<RecruitInterviewVo> list(RecruitInterviewQueryBo bo) {
|
|
|
startPage();
|
|
|
@@ -60,6 +61,17 @@ public class RecruitInterviewController extends BaseController {
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询招聘面试简历列表
|
|
|
+ */
|
|
|
+ @ApiOperation("全部投递面试简历列表")
|
|
|
+ @GetMapping("/listAll")
|
|
|
+ public TableDataInfo<RecruitInterviewVo> listAll(RecruitInterviewQueryBo bo) {
|
|
|
+ startPage();
|
|
|
+ bo.setStatus(1);
|
|
|
+ List<RecruitInterviewVo> list = iRecruitInterviewService.queryListAll(bo);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
/**
|