추론진행 배치 시간 수정

This commit is contained in:
2026-01-20 10:17:06 +09:00
parent 698d57923a
commit 7471322664
2 changed files with 4 additions and 3 deletions

View File

@@ -350,7 +350,8 @@ public class MapSheetMngService {
List<MngDto> mngList = mapSheetMngCoreService.findMapSheetMngList();
List<MngYyyyDto> yearList =
mngList.stream()
.filter(dto -> "DONE".equals(dto.getMngState()) || "TAKINGERROR".equals(dto.getMngState()))
.filter(
dto -> "DONE".equals(dto.getMngState()) || "TAKINGERROR".equals(dto.getMngState()))
.map(dto -> new MngYyyyDto(dto.getMngYyyy(), dto.getMngPath()))
.toList();