|
@@ -10,10 +10,7 @@ import org.jeecg.modules.flowpath.entity.ItdmFlowPath;
|
|
|
import org.jeecg.modules.flowpath.entity.ItdmFlowPathStep;
|
|
|
import org.jeecg.modules.flowpath.entity.ItdmRunFlowPath;
|
|
|
import org.jeecg.modules.flowpath.entity.ItdmRunFlowPathStep;
|
|
|
-import org.jeecg.modules.flowpath.mapper.ItdmFlowPathMapper;
|
|
|
-import org.jeecg.modules.flowpath.mapper.ItdmFlowPathStepMapper;
|
|
|
-import org.jeecg.modules.flowpath.mapper.ItdmRunFlowPathMapper;
|
|
|
-import org.jeecg.modules.flowpath.mapper.ItdmRunFlowPathStepMapper;
|
|
|
+import org.jeecg.modules.flowpath.mapper.*;
|
|
|
import org.jeecg.modules.flowpath.service.IItdmRunFlowPathService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -49,6 +46,10 @@ public class ItdmRunFlowPathServiceImpl extends ServiceImpl<ItdmRunFlowPathMappe
|
|
|
@SuppressWarnings("all")
|
|
|
private ItdmRunFlowPathStepMapper itdmRunFlowPathStepMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private ItdmFZRunFlowPathLogService logService;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
@Override
|
|
|
@Transactional
|
|
@@ -87,6 +88,7 @@ public class ItdmRunFlowPathServiceImpl extends ServiceImpl<ItdmRunFlowPathMappe
|
|
|
itdmRunFlowPathStepMapper.insert(itdmRunFlowPathStep);
|
|
|
}
|
|
|
|
|
|
+ logService.insert(itdmRunFlowPath.getFlowPathId(), itdmRunFlowPath.getDqSetp(), list.get(0).getId(), "创建", "");
|
|
|
|
|
|
}
|
|
|
}
|