version1
admin 2 years ago
parent 70ec8d995e
commit 791b7a25b7

@ -271,12 +271,21 @@ public class IdcServiceImpl implements IdcService {
Response response = client.newCall(request).execute();
result = response.body().string();
JSONObject json = JSONObject.parseObject(result);
if(isLastLevel()) {
success = analyToDB(json,files);
if(json.get("code")!=null) {
success = analyToDB(json.getJSONObject("data"),files);
} else {
success = analyToDB(json,files);
}
if(!success)
logger.info("fetchData-->解析失败");
} else {
syncAddTaskStatus(json,false,success);
if(json.get("code")!=null) {
syncAddTaskStatus(json.getJSONObject("data"),false,success);
} else {
syncAddTaskStatus(json,false,success);
}
}
if(success) {

Loading…
Cancel
Save