|
@ -30,8 +30,9 @@ public class QueryZDAgvTaskStatus { |
|
|
JSONArray inst_rows = JSONArray.parseArray(response.body()); |
|
|
JSONArray inst_rows = JSONArray.parseArray(response.body()); |
|
|
for (int i = 0; i < inst_rows.size(); i++) { |
|
|
for (int i = 0; i < inst_rows.size(); i++) { |
|
|
JSONObject inst_jo = inst_rows.getJSONObject(i); |
|
|
JSONObject inst_jo = inst_rows.getJSONObject(i); |
|
|
String inst_code = inst_jo.getString("taskCode"); |
|
|
String inst_code = inst_jo.getString("task_code"); |
|
|
Instruction inst = instructionService.findByCodeFromCache(inst_code); |
|
|
Instruction inst = instructionService.findByCodeFromCache(inst_code); |
|
|
|
|
|
log.info("查询到的任务号{}",inst); |
|
|
if (ObjectUtil.isEmpty(inst)) { |
|
|
if (ObjectUtil.isEmpty(inst)) { |
|
|
continue; |
|
|
continue; |
|
|
} |
|
|
} |
|
|