Commit 9d77996621c0a38aeb52135ca448e4f90d95c02c

Authored by 함상기
1 parent 50447760

.

src/main/java/com/batch/config/MatchingAiSubProcessorAuto.java
... ... @@ -154,7 +154,7 @@ public class MatchingAiSubProcessorAuto {
154 154 List<Map> lMatchingResultUpdate = new ArrayList<Map>(); //업데이트할 대상
155 155  
156 156 int mtchNumber = 0;
157   - String mtchSys = "AUTO";
  157 + String mtchSys = "AIEXTRA";
158 158 String mtchType = "AI_" + iCmbnOwnCnt + "_" + iCmbnTranCnt;
159 159 String mtchTypeName = "자기(" + iCmbnOwnCnt + "건Sum), 상대(" + iCmbnTranCnt + "건Sum), 비교(금액)";
160 160 for (BigDecimal curKey : mMatchingDataOne.keySet()) {
... ...
src/main/java/com/batch/config/MatchingExtraProcessorAuto.java
... ... @@ -129,7 +129,7 @@ public class MatchingExtraProcessorAuto {
129 129 List<Map> lMatchingResultUpdate = new ArrayList<Map>(); //업데이트할 대상
130 130  
131 131 int mtchNumber = 0;
132   - String mtchSys = "AUTO";
  132 + String mtchSys = "EXTRA";
133 133 String mtchType = "EX_" + iCmbnOwnCnt + "_" + iCmbnTranCnt;
134 134 String mtchTypeName = "자기(" + iCmbnOwnCnt + "건Sum), 상대(" + iCmbnTranCnt + "건Sum), 비교(금액)";
135 135 for (BigDecimal curKey : mMatchingDataOne.keySet()) {
... ...