어드민 불필요 로그 삭제, 배치 모니터링 리스트 순서 조정

This commit is contained in:
Leeminha
2023-01-05 13:42:14 +09:00
parent 7fdcef2625
commit a21dcf9c95
2 changed files with 1 additions and 5 deletions

View File

@@ -426,15 +426,11 @@ public class SysMgtService {
String batchDesc = batchLists.get(i).getBatchDesc(); String batchDesc = batchLists.get(i).getBatchDesc();
String[] batchArr = batchDesc.split("@"); String[] batchArr = batchDesc.split("@");
log.info("배치 셋팅 배열 확인={},{},{}",batchArr[0],batchArr[1],batchArr[2]);
batchLists.get(i).setBatchType(batchArr[0]); batchLists.get(i).setBatchType(batchArr[0]);
batchLists.get(i).setBatchCycle(batchArr[1]); batchLists.get(i).setBatchCycle(batchArr[1]);
batchLists.get(i).setBatchTime(batchArr[2]); batchLists.get(i).setBatchTime(batchArr[2]);
log.info("배치 셋팅 정보 확인하기1={}",batchLists.get(i).getBatchType());
log.info("배치 셋팅 정보 확인하기2={}",batchLists.get(i).getBatchCycle());
log.info("배치 셋팅 정보 확인하기3={}",batchLists.get(i).getBatchTime());
} }
BatchListRes batchListRes = new BatchListRes(); BatchListRes batchListRes = new BatchListRes();

View File

@@ -401,7 +401,7 @@
GROUP BY BATCH_ID GROUP BY BATCH_ID
) )
GROUP BY BATCH_ID GROUP BY BATCH_ID
ORDER BY STTUS_CD DESC, BATCH_DESC ASC, BATCH_ID ASC ORDER BY STTUS_CD DESC, BATCH_DESC DESC, BATCH_ID ASC
</select> </select>