Merge branch 'fix_foton_20240430' into 'master'

fix: 添加发送待办接口

See merge request laws-foton-slrs/foton-wkflow-rest!91
This commit is contained in:
王晓勇
2024-05-21 09:46:59 +00:00
@@ -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请求")