findFinishedPipelineTasks
@Query(value = "
select t
from TaskEntity t
where
t.pipelineTask.id = :pipelineTaskId and
t.runningStatus = 50
")
@Query(value = "
select t
from TaskEntity t
where
t.pipelineTask.id = :pipelineTaskId and
t.runningStatus = 50 and
t.type.hid in :taskTypeHids
")