|
@@ -161,7 +161,7 @@ public class ChoiceStockServiceImpl implements ChoiceStockService {
|
|
|
}
|
|
|
StringBuffer tableName = new StringBuffer("data_rt_");
|
|
|
tableName.append(entry.getKey().replace(".", "_").toLowerCase());
|
|
|
- stockRestPojo.setCode(entry.getKey().toLowerCase());
|
|
|
+ stockRestPojo.setCode(entry.getKey().toUpperCase());
|
|
|
stockRestPojo.setTableName(tableName.toString());
|
|
|
stockRestPojoList.add(stockRestPojo);
|
|
|
stockRestVO = new StockRestVO();
|
|
@@ -201,8 +201,7 @@ public class ChoiceStockServiceImpl implements ChoiceStockService {
|
|
|
Thread thread=new Thread(new Runnable() {
|
|
|
@Override
|
|
|
public void run() {
|
|
|
- String returnStr = HttpRequest.httpPostWithjson(url, JSON.toJSONString(subList));
|
|
|
- log.info(returnStr);
|
|
|
+ HttpRequest.httpPostWithjson(url, JSON.toJSONString(subList));
|
|
|
}
|
|
|
});
|
|
|
thread.start();
|