|
@@ -20,7 +20,7 @@ import java.util.Map;
|
|
|
@Api(tags = "维保数据历史记录")
|
|
|
@Validated
|
|
|
@RestController
|
|
|
-@RequestMapping("monitorIndicatorRecords")
|
|
|
+@RequestMapping("MaintenanceDataRecords")
|
|
|
public class MaintenanceController {
|
|
|
@Autowired
|
|
|
private RedisLock lockUtil;
|
|
@@ -34,26 +34,32 @@ public class MaintenanceController {
|
|
|
|
|
|
Map<String, Boolean> iotDataMap = new LinkedHashMap<>();
|
|
|
iotDataMap.put("10", true);
|
|
|
- iotDataMap.put("11", true);
|
|
|
- iotDataMap.put("12", false);
|
|
|
- iotDataMap.put("13", true);
|
|
|
+ iotDataMap.put("11", false);
|
|
|
+ iotDataMap.put("12", true);
|
|
|
+ iotDataMap.put("13", false);
|
|
|
iotDataMap.put("14", true);
|
|
|
- iotDataMap.put("15", true);
|
|
|
- iotDataMap.put("16", false);
|
|
|
- iotDataMap.put("17", true);
|
|
|
+ iotDataMap.put("15", false);
|
|
|
+ iotDataMap.put("16", true);
|
|
|
+ iotDataMap.put("17", false);
|
|
|
iotDataMap.put("18", true);
|
|
|
|
|
|
String objId = "Eq1101060001f00f2ed121f9407783ac0f0a520a9616", alarmItemCode=EnumAlarmItem.EvapAbnormal.getCode();
|
|
|
String lockKey = objId+"-"+alarmItemCode;
|
|
|
- Object isLock = redisUtil.get(lockKey);
|
|
|
- if (null != isLock){
|
|
|
- long time = System.currentTimeMillis() + (10 * 1000);
|
|
|
- lockUtil.lock(lockKey, String.valueOf(time));
|
|
|
- JSONArray array = getSendArray(iotDataMap,objId,alarmItemCode);
|
|
|
- //推送
|
|
|
- rabbitConfig.sendMsg(array);
|
|
|
+ for (String time : iotDataMap.keySet()) {
|
|
|
+ Object isLock = redisUtil.get(lockKey);
|
|
|
+ if (null == isLock){
|
|
|
+ long timeLong = System.currentTimeMillis() + (10 * 1000);
|
|
|
+ lockUtil.sendDataLock(lockKey, String.valueOf(timeLong));
|
|
|
+ JSONArray array = new JSONArray();
|
|
|
+ if (iotDataMap.get(time)) {
|
|
|
+ array.add(getTriggerData(time,objId,alarmItemCode));
|
|
|
+ } else {
|
|
|
+ array.add(getNormalData(time,objId,alarmItemCode));
|
|
|
+ }
|
|
|
+ //推送
|
|
|
+ rabbitConfig.sendMsg(array);
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
|
|
|
public JSONArray getSendArray(Map<String, Boolean> iotDataMap,String objId,String alarmItemCode) {
|
|
@@ -86,7 +92,7 @@ public class MaintenanceController {
|
|
|
jsonObject.put("itemCode", alarmItemCode);
|
|
|
jsonObject.put("meterId",objId);
|
|
|
JSONArray funcIdArray = new JSONArray();
|
|
|
- funcIdArray.add(EnumMaintenanceIndicatorType.ACCCCC_EvapHeatTransferDayAvg);//换热端差日维度平均值阈值
|
|
|
+ funcIdArray.add(EnumMaintenanceIndicatorType.ACCCCC_EvapHeatTransferDayAvg.getCode());//换热端差日维度平均值阈值
|
|
|
funcIdArray.add(EnumMaintenanceIndicatorType.ACCCCC_EvapContinuousOperation.getCode());//运行持续时间
|
|
|
JSONArray valueArray = new JSONArray();
|
|
|
valueArray.add(value1);
|