feat/infer_dev_260107 #3
@@ -13,7 +13,7 @@ public class MapSheetMngFileJobController {
|
||||
private final MapSheetMngFileJobService mapSheetMngFileJobService;
|
||||
|
||||
// 현재 상태 확인용 Getter
|
||||
@Getter private boolean isSchedulerEnabled = true;
|
||||
@Getter private boolean isSchedulerEnabled = false;
|
||||
@Getter private boolean isFileSyncSchedulerEnabled = false;
|
||||
@Getter private int mngSyncPageSize = 20;
|
||||
|
||||
|
||||
@@ -121,11 +121,11 @@ public class MapSheetMngFileJobService {
|
||||
|
||||
int tfwCnt =
|
||||
(int)
|
||||
basicList.stream().filter(dto -> dto.getExtension().toString().equals("tfw")).count();
|
||||
basicList.stream().filter(dto -> dto.getExtension().equalsIgnoreCase("tfw")).count();
|
||||
|
||||
int tifCnt =
|
||||
(int)
|
||||
basicList.stream().filter(dto -> dto.getExtension().toString().equals("tif")).count();
|
||||
basicList.stream().filter(dto -> dto.getExtension().equalsIgnoreCase("tif")).count();
|
||||
|
||||
syncState = "";
|
||||
syncCheckState = "";
|
||||
|
||||
Reference in New Issue
Block a user