|
@@ -95,6 +95,16 @@ public class RecruitInterviewController extends BaseController {
|
|
|
return toAjax(iRecruitInterviewService.insertByAddBo(bo) ? 1 : 0);
|
|
return toAjax(iRecruitInterviewService.insertByAddBo(bo) ? 1 : 0);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 修改招聘面试关联
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiOperation("修改招聘面试关联")
|
|
|
|
|
+ @Log(title = "招聘面试关联", businessType = BusinessType.UPDATE)
|
|
|
|
|
+ @PostMapping("/edit")
|
|
|
|
|
+ public AjaxResult<Void> edit(@RequestBody RecruitInterviewEditBo bo) {
|
|
|
|
|
+ return toAjax(iRecruitInterviewService.updateByEditBo(bo) ? 1 : 0);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|