|
@@ -68,7 +68,7 @@ public class RecruitInterviewController extends BaseController {
|
|
|
@GetMapping("/listAll")
|
|
@GetMapping("/listAll")
|
|
|
public TableDataInfo<RecruitInterviewVo> listAll(RecruitInterviewQueryBo bo) {
|
|
public TableDataInfo<RecruitInterviewVo> listAll(RecruitInterviewQueryBo bo) {
|
|
|
startPage();
|
|
startPage();
|
|
|
- bo.setStatus(1);
|
|
|
|
|
|
|
+ bo.setStatus(0);
|
|
|
List<RecruitInterviewVo> list = iRecruitInterviewService.queryListAll(bo);
|
|
List<RecruitInterviewVo> list = iRecruitInterviewService.queryListAll(bo);
|
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
|
}
|
|
}
|
|
@@ -78,7 +78,6 @@ public class RecruitInterviewController extends BaseController {
|
|
|
* 获取招聘面试关联详细信息
|
|
* 获取招聘面试关联详细信息
|
|
|
*/
|
|
*/
|
|
|
@ApiOperation("获取招聘面试关联详细信息")
|
|
@ApiOperation("获取招聘面试关联详细信息")
|
|
|
- @PreAuthorize("@ss.hasPermi('system:interview:query')")
|
|
|
|
|
@GetMapping("/{interviewId}")
|
|
@GetMapping("/{interviewId}")
|
|
|
public AjaxResult<RecruitInterviewVo> getInfo(@PathVariable("interviewId" ) Long interviewId) {
|
|
public AjaxResult<RecruitInterviewVo> getInfo(@PathVariable("interviewId" ) Long interviewId) {
|
|
|
return AjaxResult.success(iRecruitInterviewService.queryById(interviewId));
|
|
return AjaxResult.success(iRecruitInterviewService.queryById(interviewId));
|