추론 run 추가

This commit is contained in:
2026-02-25 18:39:32 +09:00
parent 9c3d6c01f7
commit d3faa87d4f
2 changed files with 44 additions and 8 deletions

View File

@@ -1107,7 +1107,12 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
.from(mapSheetMngHstEntity)
.innerJoin(mapSheetMngFileEntity)
.on(mapSheetMngFileEntity.hstUid.eq(mapSheetMngHstEntity.hstUid))
.where(mapSheetMngHstEntity.mngYyyy.eq(year).and(mapSheetMngHstEntity.syncState.eq("DONE")))
.where(
mapSheetMngHstEntity
.mngYyyy
.eq(year)
.and(mapSheetMngHstEntity.syncState.eq("DONE"))
.and(mapSheetMngFileEntity.fileExt.eq("tif")))
.fetch();
}
}