fix: 添加发送待办接口

This commit is contained in:
wxyclub
2024-05-21 17:45:00 +08:00
parent 5352591652
commit 8e2f49f12f
@@ -73,8 +73,8 @@ public class WebServiceOAController extends BaseAction {
@ApiOperation(value = "发送待办接口(")
@PostMapping("/sendTodo")
public NotifyTodoAppResult sendTodo() throws Exception{
return webServiceOAService.sendTodo(new BusProcessNew());
public NotifyTodoAppResult sendTodo(@RequestBody BusProcessNew busProcessNew) throws Exception{
return webServiceOAService.sendTodo(busProcessNew);
}
@ApiOperation("代主服务发送OA请求")