하이퍼 파라미터 상세조회 삭제여부 조건 제거

This commit is contained in:
2026-02-23 14:17:34 +09:00
parent cb97c5e59e
commit 8a44df26b8

View File

@@ -82,7 +82,7 @@ public class HyperParamRepositoryImpl implements HyperParamRepositoryCustom {
queryFactory
.select(modelHyperParamEntity)
.from(modelHyperParamEntity)
.where(modelHyperParamEntity.delYn.isFalse().and(modelHyperParamEntity.uuid.eq(uuid)))
.where(modelHyperParamEntity.uuid.eq(uuid))
.fetchOne());
}