추론 run 추가

This commit is contained in:
2026-02-25 18:44:04 +09:00
parent d3faa87d4f
commit 2c1047a014

View File

@@ -1111,7 +1111,11 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
mapSheetMngHstEntity
.mngYyyy
.eq(year)
.and(mapSheetMngHstEntity.syncState.eq("DONE"))
.and(
mapSheetMngHstEntity
.syncState
.eq("DONE")
.or(mapSheetMngHstEntity.syncCheckState.eq("DONE")))
.and(mapSheetMngFileEntity.fileExt.eq("tif")))
.fetch();
}