enum @notBlank제거

This commit is contained in:
2026-03-07 01:21:30 +09:00
parent f3c7c5e8e8
commit 0a53e186dc

View File

@@ -1120,6 +1120,7 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
mapSheetMngFileEntity
.hstUid
.eq(mapSheetMngHstEntity.hstUid)
.and(mapSheetMngHstEntity.mngYyyy.eq(year))
.and(mapSheetMngFileEntity.fileExt.eq("tif"))
.and(mapSheetMngFileEntity.fileState.eq("DONE"))
.and(mapSheetMngFileEntity.fileDel.eq(false)))
@@ -1176,6 +1177,7 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
.from(f)
.where(
f.hstUid.eq(h.hstUid),
f.mngYyyy.eq(year),
f.fileExt.eq("tif"),
f.fileState.eq("DONE"),
f.fileDel.eq(false))
@@ -1195,6 +1197,7 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
.from(f2)
.where(
f2.hstUid.eq(h2.hstUid),
f.mngYyyy.eq(year),
f2.fileExt.eq("tif"),
f2.fileState.eq("DONE"),
f2.fileDel.eq(false))