change 4 лет назад
Родитель
Сommit
d79197f247

+ 10 - 0
zhongzheng-api/src/main/java/com/zhongzheng/controller/recruit/RecruitInterviewController.java

@@ -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);
+    }
+