Compare commits
No commits in common. "f77645a954f4a159e354e0b7eab4d3c5dca712ae" and "d05503724e8f79c1e82e5c3a16a36932c4cc75e1" have entirely different histories.
f77645a954
...
d05503724e
|
@ -125,14 +125,13 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, TaskInfo> implement
|
|||
String[] tableAsFieldList = taskInputList.get(i).getTableAsField().split(",");
|
||||
for (int j = 0; j < tableAsFieldList.length; j++) {
|
||||
for (int o = 0; o < newFileName.length; o++) {
|
||||
newAndOldMap.put(outPutFileName[o], newFileName[o]);
|
||||
newAndOldMap.put(outPutFileName[j], newFileName[j]);
|
||||
if(tableAsFieldList[j].equals(outPutFileName[o])){
|
||||
sql += ","+taskInputList.get(i).getTableAsName() + "." + tableFieldList[j] +" " +
|
||||
tableAsFieldList[j] + " ";
|
||||
}
|
||||
}
|
||||
fieldAsNameMap.put(tableAsFieldList[j], tableFieldList[j]);
|
||||
fieldAsNameMap.put(tableAsFieldList[j], tableFieldList[j]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -250,7 +249,6 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, TaskInfo> implement
|
|||
List<List<DataValue>> data = (List<List<DataValue>>) tableValue.getData();
|
||||
log.info("远程调用完毕,调用数量{}",data.size());
|
||||
for (List<DataValue> datum : data) {
|
||||
log.info(datum.toString());
|
||||
for (DataValue dataValue : datum) {
|
||||
String key = dataValue.getKey();
|
||||
String newKey = fieldAsNameMap.get(key);
|
||||
|
|
Loading…
Reference in New Issue