학습데이터관리 목록 진행중 상태 수정

This commit is contained in:
2026-01-27 09:32:52 +09:00
parent 1967a9d7cd
commit a00d933eb1

View File

@@ -1811,7 +1811,9 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto
return queryFactory return queryFactory
.select(mapSheetAnalInferenceEntity.id.count()) .select(mapSheetAnalInferenceEntity.id.count())
.from(mapSheetAnalInferenceEntity) .from(mapSheetAnalInferenceEntity)
.where(mapSheetAnalInferenceEntity.analState.eq(LabelMngState.ING.getId())) .where(
mapSheetAnalInferenceEntity.analState.in(
LabelMngState.ASSIGNED.getId(), LabelMngState.ING.getId()))
.fetchOne(); .fetchOne();
} }
} }