OA待办任务 删除 PID

This commit is contained in:
gaojiabao
2023-04-18 10:05:25 +08:00
parent 527032f9ec
commit f6ff8e0063
@@ -2759,4 +2759,12 @@ public class TodoTaskController extends BaseAction {
return busProcessNames;
}
@ApiOperation(value = "删除OA消息通知")
@GetMapping("/deleteOATask")
public String deleteOATask(@RequestParam("pId") String pId) {
//查询出当前数据
webServiceOAService.deleteOAByPid(pId);
return "1";
}
}