Browse Source

一类交调小时数据优化

develop
lau572 3 months ago
parent
commit
1a5f70e7b1
  1. 12
      zc-business/src/main/java/com/zc/business/controller/DcTrafficSurveyDataController.java

12
zc-business/src/main/java/com/zc/business/controller/DcTrafficSurveyDataController.java

@ -115,7 +115,7 @@ public class DcTrafficSurveyDataController extends BaseController
cacheMap.put("endTime",endTime); cacheMap.put("endTime",endTime);
cacheMap.put("count",3); //剩余请求次数 cacheMap.put("count",3); //剩余请求次数
redisCache.setCacheMapValue(RedisKeyConstants.TRAFFIC_SURVEY_HOURS_DATA,dcDevice.getIotDeviceId()+startTime,cacheMap); redisCache.setCacheMapValue(RedisKeyConstants.TRAFFIC_SURVEY_HOURS_DATA,dcDevice.getIotDeviceId()+startTime,cacheMap);
break; continue;
} }
} catch (Exception e){ } catch (Exception e){
e.printStackTrace(); e.printStackTrace();
@ -127,12 +127,12 @@ public class DcTrafficSurveyDataController extends BaseController
cacheMap.put("endTime",endTime); cacheMap.put("endTime",endTime);
cacheMap.put("count",3); //剩余请求次数 cacheMap.put("count",3); //剩余请求次数
redisCache.setCacheMapValue(RedisKeyConstants.TRAFFIC_SURVEY_HOURS_DATA,dcDevice.getIotDeviceId()+startTime,cacheMap); redisCache.setCacheMapValue(RedisKeyConstants.TRAFFIC_SURVEY_HOURS_DATA,dcDevice.getIotDeviceId()+startTime,cacheMap);
break; continue;
} }
JSONArray dataArray = JSON.parseArray(data.toString()); JSONArray dataArray = JSON.parseArray(data.toString());
if (dataArray == null || dataArray.size() < 1){ if (dataArray == null || dataArray.size() < 1){
break; continue;
} }
Integer hezeTotal = 0; Integer hezeTotal = 0;
Integer jinanTotal = 0; Integer jinanTotal = 0;
@ -247,7 +247,7 @@ public class DcTrafficSurveyDataController extends BaseController
value.put("count",count); value.put("count",count);
redisCache.setCacheMapValue(RedisKeyConstants.TRAFFIC_SURVEY_HOURS_DATA,iotDeviceId+startTime,value); redisCache.setCacheMapValue(RedisKeyConstants.TRAFFIC_SURVEY_HOURS_DATA,iotDeviceId+startTime,value);
} }
break; continue;
} }
} catch (Exception e){ } catch (Exception e){
e.printStackTrace(); e.printStackTrace();
@ -258,12 +258,12 @@ public class DcTrafficSurveyDataController extends BaseController
value.put("count",count); value.put("count",count);
redisCache.setCacheMapValue(RedisKeyConstants.TRAFFIC_SURVEY_HOURS_DATA,iotDeviceId+startTime,value); redisCache.setCacheMapValue(RedisKeyConstants.TRAFFIC_SURVEY_HOURS_DATA,iotDeviceId+startTime,value);
} }
break; continue;
} }
JSONArray dataArray = JSON.parseArray(data.toString()); JSONArray dataArray = JSON.parseArray(data.toString());
if (dataArray == null || dataArray.size() < 1){ if (dataArray == null || dataArray.size() < 1){
break; continue;
} }
Integer hezeTotal = 0; Integer hezeTotal = 0;
Integer jinanTotal = 0; Integer jinanTotal = 0;

Loading…
Cancel
Save