@@ -82,7 +82,7 @@ public interface ProcUnitHandlerRepository extends JpaRepository<ProcUnitHandler
@Query(name="procUnitHandler.getMaxGrouId",value="select max(groupId) from ProcUnitHandler o where o.bizId = :bizId and o.procUnitId = :procUnitId and cooperationModelId = 'chief'")
@Query(name="procUnitHandler.getExecutionTimes",value="select coalesce(max(executionTimes), 0) from ProcUnitHandler o where o.bizId = :bizId and o.procUnitId = :procUnitId and cooperationModelId = 'chief'")
@Query(name="procUnitHandler.getExecutionTimes",value="select coalesce(max(o.executionTimes), 0) from ProcUnitHandler o where o.bizId = :bizId and o.procUnitId = :procUnitId and o.cooperationModelId = 'chief'")
@Query(name="procUnitHandler.getMaxSequence",value="select coalesce(max(sequence), 0) from ProcUnitHandler o where o.bizId = :bizId and o.procUnitId = :procUnitId and cooperationModelId = 'chief'")