告警平台对接
							parent
							
								
									9eba1b9b1a
								
							
						
					
					
						commit
						d740896398
					
				|  | @ -145,8 +145,12 @@ public class IndexServiceImpl implements IndexService { | |||
| 
 | ||||
|         try { | ||||
|             String result = warnUtil.call(WarnInfo.get7DayWarnTrend.getUrl(), "GET"); | ||||
|             JSONObject jsonObject = JSONObject.parseObject(result); | ||||
|             if (!"200".equals(jsonObject.getString("code"))) { | ||||
|                 log.info("result:" + result); | ||||
|             return new GeneralResult(true, "查询成功"); | ||||
|                 return new GeneralResult(false, "查询失败"); | ||||
|             } | ||||
|             return new GeneralResult(true, jsonObject, "查询成功"); | ||||
|         } catch (Exception e) { | ||||
|             log.info("查询失败", e); | ||||
|             return new GeneralResult(false, "查询失败"); | ||||
|  | @ -158,8 +162,12 @@ public class IndexServiceImpl implements IndexService { | |||
| 
 | ||||
|         try { | ||||
|             String result = warnUtil.call(WarnInfo.get1DayWarnCount.getUrl(), "GET"); | ||||
|             JSONObject jsonObject = JSONObject.parseObject(result); | ||||
|             if (!"200".equals(jsonObject.getString("code"))) { | ||||
|                 log.info("result:" + result); | ||||
|             return new GeneralResult(true, "查询成功"); | ||||
|                 return new GeneralResult(false, "查询失败"); | ||||
|             } | ||||
|             return new GeneralResult(true, jsonObject, "查询成功"); | ||||
|         } catch (Exception e) { | ||||
|             log.info("查询失败", e); | ||||
|             return new GeneralResult(false, "查询失败"); | ||||
|  | @ -170,8 +178,12 @@ public class IndexServiceImpl implements IndexService { | |||
|     public GeneralResult warnList(RequestContext requestContext) { | ||||
|         try { | ||||
|             String result = warnUtil.call(WarnInfo.getWarnList.getUrl(), "GET"); | ||||
|             JSONObject jsonObject = JSONObject.parseObject(result); | ||||
|             if (!"200".equals(jsonObject.getString("code"))) { | ||||
|                 log.info("result:" + result); | ||||
|             return new GeneralResult(true, "查询成功"); | ||||
|                 return new GeneralResult(false, "查询失败"); | ||||
|             } | ||||
|             return new GeneralResult(true, jsonObject, "查询成功"); | ||||
|         } catch (Exception e) { | ||||
|             log.info("查询失败", e); | ||||
|             return new GeneralResult(false, "查询失败"); | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue