拉取完善

master
admin 2 years ago
parent 71037e2cce
commit 5dff0867ec

@ -246,10 +246,18 @@ public class IdcServiceImpl implements IdcService {
String result = "";
MultipartFile[] files = {};
try {
boolean success=true;
Response response = client.newCall(request).execute();
result = response.body().toString();
JSONObject json = JSONObject.parseObject(result);
analyToDB(json,files);
if(isLastLevel()) {
success = analyToDB(json,files);
} else {
syncAddTaskStatus(json,false);
}
String host = getNextHost();
if(success)
post(host+"/spssync/common/success",params);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();

Loading…
Cancel
Save