추론실행 오류 수정

This commit is contained in:
2026-03-06 18:53:38 +09:00
parent 37f534abff
commit e4b904606f

View File

@@ -1107,7 +1107,8 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
.hstUid
.eq(mapSheetMngHstEntity.hstUid) // FK 관계에 맞게 유지
.and(mapSheetMngFileEntity.fileExt.eq("tif"))
.and(mapSheetMngFileEntity.fileState.eq("DONE")))
.and(mapSheetMngFileEntity.fileState.eq("DONE"))
.and(mapSheetMngFileEntity.fileDel.eq(false)))
.exists());
BooleanBuilder likeBuilder = new BooleanBuilder();