测试线程池
parent
928858f1d7
commit
00b11a2cb1
|
@ -246,13 +246,12 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, TaskInfo> implement
|
|||
log.info("执行查询语句为{}", limitSelect);
|
||||
log.info(databaseId);
|
||||
Result tableValue = dataValueClient.findTableValue(databaseId, limitSelect);
|
||||
log.info("远程调用完毕,idaoyong 调用返回的是{}", tableValue);
|
||||
List<List<DataValue>> data = (List<List<DataValue>>) tableValue.getData();
|
||||
log.info("远程调用完毕,调用的值为{}", data);
|
||||
for (List<DataValue> datum : data) {
|
||||
for (DataValue dataValue : datum) {
|
||||
String key = dataValue.getKey();
|
||||
String newKey = fieldAsNameMap.get(key);
|
||||
log.info("新的目标字段{}",newKey);
|
||||
log.info("通过map字段取到的值为{}", newKey);
|
||||
dataValue.setKey(newKey);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue