流程节点运行时设置自动或者手动

支持用户定自定义文件选择
This commit is contained in:
2025-12-25 16:40:53 +08:00
parent 8abd4d2117
commit 9e85144f1e
16 changed files with 384 additions and 13 deletions

View File

@@ -1460,6 +1460,8 @@ public class SimulationRunServiceImpl extends ServiceImpl<SimulationRunMapper, S
Map<String, Object> params = new HashMap<>();
// 输出文件夹id 保存到用户输入参数
params.put("outputDirId", flowNodeDto.getOutputDirId());
// 输入文件夹id 保存到用户输入参数
params.put("inputDirId", flowNodeDto.getInputDirId());
// 前端用户输入参数
params.putAll(req.getInputParams());
flowableFeignClient.saveParamsByDefinitionId(simulationRun.getProcessDefinitionId(), flowNodeDto.getNodeId(), simulationRun.getUuid(), params);