|
@@ -628,4 +628,18 @@ public class DeptAssessmentDeclarationController {
|
|
|
return R.error("未添加工作完成情况!");
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加审批领导
|
|
|
+ *
|
|
|
+ * @param id 主键
|
|
|
+ * @param id 用户编号
|
|
|
+ * @return 结果
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/addApprovalLeader")
|
|
|
+ public R addApprovalLeader(@RequestParam(value = "id") String id,
|
|
|
+ @RequestParam(value = "employeeNo") String employeeNo) {
|
|
|
+ List<UserDTO> list = new ArrayList<>();
|
|
|
+ return R.ok().data(list);
|
|
|
+ }
|
|
|
}
|