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