修改删除simulation_taskpool_flowtemplate_relate表记录bug

This commit is contained in:
daiqy88
2026-01-09 17:13:22 +08:00
parent db5645ca28
commit 2138968c31

View File

@@ -250,7 +250,7 @@ public interface SimulationPoolMapper {
@Delete("DELETE FROM simulation_taskpool_flowtemplate_relate WHERE flowCode=#{flowCode}")
int deleteTaskFlowRelateByFlowCode(@Param("flowCode")String flowCode);
@Delete("DELETE FROM simulation_taskpool_flowtemplate_relate WHERE taskUuid=#{taskUuid} AND poolName=#{poolName} AND poolVersion=#{version}")
@Delete("DELETE FROM simulation_taskpool_flowtemplate_relate WHERE taskUuid=#{taskUuid} AND poolName=#{poolName} AND version=#{version}")
int deleteTaskFlowRelateByTaskUuid(@Param("taskUuid")String taskUuid,@Param("poolName")String poolName,@Param("version")String version);
@Select("SELECT * FROM simulation_taskpool_flowtemplate_relate WHERE poolName=#{poolName}")