修改企业信息查询bug
This commit is contained in:
parent
12e4877860
commit
3f4f37975c
|
|
@ -691,8 +691,6 @@ public class EnterprisePoniteScheduleService {
|
|||
log.info("刷新Token");
|
||||
refreshToken();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.info("危化企业信息查询查询异常:" + e);
|
||||
}
|
||||
return flag;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -167,7 +167,6 @@ public class EnterpriseScheduleService {
|
|||
.body("{\"page\": " + page + ",\"limit\": 1000,\"entity\": {}}")
|
||||
.execute()
|
||||
.body();
|
||||
log.info("企业信息查询结果:{}", body);
|
||||
JsonNode jsonNode = objectMapper.readValue(body, JsonNode.class);
|
||||
if (jsonNode.has("code") && 200 == jsonNode.get("code").asInt() && jsonNode.has("data")) {
|
||||
JsonNode data = objectMapper.readValue(jsonNode.get("data").toString(), JsonNode.class);
|
||||
|
|
|
|||
Loading…
Reference in New Issue