fix:算例新增流程模版字段
This commit is contained in:
@@ -132,4 +132,7 @@ public class SimulationRun implements Serializable {
|
||||
@TableField("reportContent")
|
||||
private String reportContent;
|
||||
|
||||
@Schema(description= "流程模版显示信息")
|
||||
@TableField("viewContent")
|
||||
private String viewContent;
|
||||
}
|
||||
|
||||
@@ -859,6 +859,7 @@ public class SimulationRunServiceImpl extends ServiceImpl<SimulationRunMapper, S
|
||||
SdmResponse<FlowTemplateResp> flowTemplateResp = flowFeignClient.queryFlowTemplateInfo(simulationRun.getFlowTemplate());
|
||||
if (flowTemplateResp.getData() != null) {
|
||||
simulationRun.setProcessDefinitionId(flowTemplateResp.getData().getProcessDefinitionId());
|
||||
simulationRun.setViewContent(flowTemplateResp.getData().getViewContent());
|
||||
this.updateById(simulationRun);
|
||||
try {
|
||||
List<FlowNodeDto> flowNodeDtoList = new ArrayList<>();
|
||||
|
||||
Reference in New Issue
Block a user