Compare commits
19 Commits
2025-10
...
fafcaf3bf0
| Author | SHA1 | Date | |
|---|---|---|---|
| fafcaf3bf0 | |||
| c2b48d6830 | |||
| 6b24e49651 | |||
| b3d2727a64 | |||
| 441b5d04fe | |||
| 292e8b58a5 | |||
| d20c869bad | |||
| 71b9bee182 | |||
| f227fe3c3f | |||
| 56c9c69fc9 | |||
| 004de8f307 | |||
| bda31ce52a | |||
| 4d1af87153 | |||
| e34b5ba46e | |||
| 33b9fae9ef | |||
| a369ae6160 | |||
| 6714a6f582 | |||
| 2910770be1 | |||
| cd8cf60683 |
@@ -0,0 +1,20 @@
|
|||||||
|
package com.njcn.access.api;
|
||||||
|
|
||||||
|
import com.njcn.access.api.fallback.CsDeviceClientFallbackFactory;
|
||||||
|
import com.njcn.common.pojo.constant.ServerInfo;
|
||||||
|
import com.njcn.common.pojo.response.HttpResult;
|
||||||
|
import org.springframework.cloud.openfeign.FeignClient;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author xy
|
||||||
|
*/
|
||||||
|
@FeignClient(value = ServerInfo.ACCESS_BOOT, path = "/device", fallbackFactory = CsDeviceClientFallbackFactory.class,contextId = "device")
|
||||||
|
|
||||||
|
public interface CsDeviceFeignClient {
|
||||||
|
|
||||||
|
@PostMapping("/updateRunStatus")
|
||||||
|
HttpResult<String> updateRunStatus(@RequestParam("nDid") String nDid, @RequestParam("runStatus") Integer runStatus);
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
package com.njcn.access.api.fallback;
|
||||||
|
|
||||||
|
import com.njcn.access.api.CsDeviceFeignClient;
|
||||||
|
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
||||||
|
import com.njcn.common.pojo.exception.BusinessException;
|
||||||
|
import com.njcn.common.pojo.response.HttpResult;
|
||||||
|
import feign.hystrix.FallbackFactory;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author xy
|
||||||
|
*/
|
||||||
|
@Slf4j
|
||||||
|
@Component
|
||||||
|
public class CsDeviceClientFallbackFactory implements FallbackFactory<CsDeviceFeignClient> {
|
||||||
|
@Override
|
||||||
|
public CsDeviceFeignClient create(Throwable cause) {
|
||||||
|
//判断抛出异常是否为解码器抛出的业务异常
|
||||||
|
Enum<?> exceptionEnum = CommonResponseEnum.SERVICE_FALLBACK;
|
||||||
|
if (cause.getCause() instanceof BusinessException) {
|
||||||
|
BusinessException businessException = (BusinessException) cause.getCause();
|
||||||
|
}
|
||||||
|
Enum<?> finalExceptionEnum = exceptionEnum;
|
||||||
|
return new CsDeviceFeignClient() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HttpResult<String> updateRunStatus(String nDid, Integer runStatus) {
|
||||||
|
log.error("{}异常,降级处理,异常为:{}","云设备状态调整异常",cause.toString());
|
||||||
|
throw new BusinessException(finalExceptionEnum);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -30,7 +30,7 @@ public enum AccessResponseEnum {
|
|||||||
DEV_MODEL_NOT_FIND("A0303","装置型号未找到!"),
|
DEV_MODEL_NOT_FIND("A0303","装置型号未找到!"),
|
||||||
DEV_IS_NOT_ZL("A0303","注册装置不是直连装置!"),
|
DEV_IS_NOT_ZL("A0303","注册装置不是直连装置!"),
|
||||||
DEV_IS_NOT_WG("A0303","注册装置不是网关!"),
|
DEV_IS_NOT_WG("A0303","注册装置不是网关!"),
|
||||||
DEV_IS_NOT_PORTABLE("A0303","注册装置不是便携式装置!"),
|
DEV_IS_NOT_PORTABLE("A0303","注册装置不是便携式装置或者在线监测设备!"),
|
||||||
|
|
||||||
REGISTER_RESPONSE_ERROR("A0304","装置注册,装置侧应答失败!"),
|
REGISTER_RESPONSE_ERROR("A0304","装置注册,装置侧应答失败!"),
|
||||||
ACCESS_RESPONSE_ERROR("A0304","装置注册,装置侧应答失败!"),
|
ACCESS_RESPONSE_ERROR("A0304","装置注册,装置侧应答失败!"),
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import lombok.Data;
|
|||||||
|
|
||||||
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.NotNull;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -18,6 +17,11 @@ import java.util.List;
|
|||||||
@Data
|
@Data
|
||||||
public class DevAccessParam implements Serializable {
|
public class DevAccessParam implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@ApiModelProperty("工程id")
|
||||||
|
private String engineeringId;
|
||||||
|
|
||||||
@ApiModelProperty("项目id")
|
@ApiModelProperty("项目id")
|
||||||
@NotNull(message = "项目id不能为空")
|
@NotNull(message = "项目id不能为空")
|
||||||
private String projectId;
|
private String projectId;
|
||||||
|
|||||||
@@ -51,6 +51,7 @@ public class FileCommonUtils {
|
|||||||
*/
|
*/
|
||||||
public void cleanRedisData(String nDid, String fileName) {
|
public void cleanRedisData(String nDid, String fileName) {
|
||||||
redisUtil.deleteKeysByString("downloadFilePath:"+ nDid);
|
redisUtil.deleteKeysByString("downloadFilePath:"+ nDid);
|
||||||
|
redisUtil.deleteKeysByString("isWeb:"+ nDid);
|
||||||
redisUtil.delete("fileDowning:"+nDid);
|
redisUtil.delete("fileDowning:"+nDid);
|
||||||
redisUtil.delete("fileCheck" + nDid + fileName);
|
redisUtil.delete("fileCheck" + nDid + fileName);
|
||||||
redisUtil.delete(AppRedisKey.FILE_PART_TIME.concat(fileName));
|
redisUtil.delete(AppRedisKey.FILE_PART_TIME.concat(fileName));
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package com.njcn.access.controller;
|
|||||||
|
|
||||||
import com.njcn.access.param.DevAccessParam;
|
import com.njcn.access.param.DevAccessParam;
|
||||||
import com.njcn.access.service.ICsDeviceService;
|
import com.njcn.access.service.ICsDeviceService;
|
||||||
|
import com.njcn.access.service.ICsEquipmentDeliveryService;
|
||||||
import com.njcn.common.pojo.annotation.OperateInfo;
|
import com.njcn.common.pojo.annotation.OperateInfo;
|
||||||
import com.njcn.common.pojo.enums.common.LogEnum;
|
import com.njcn.common.pojo.enums.common.LogEnum;
|
||||||
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
||||||
@@ -34,6 +35,7 @@ import org.springframework.web.bind.annotation.*;
|
|||||||
public class CsDeviceController extends BaseController {
|
public class CsDeviceController extends BaseController {
|
||||||
|
|
||||||
private final ICsDeviceService csDeviceService;
|
private final ICsDeviceService csDeviceService;
|
||||||
|
private final ICsEquipmentDeliveryService csEquipmentDeliveryService;
|
||||||
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||||
@PostMapping("/register")
|
@PostMapping("/register")
|
||||||
@@ -120,4 +122,42 @@ public class CsDeviceController extends BaseController {
|
|||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, "success", methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, "success", methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||||
|
@PostMapping("/autoPortableLedger")
|
||||||
|
@ApiOperation("调整便携式设备的台账信息")
|
||||||
|
@ReturnMsg
|
||||||
|
public HttpResult<String> autoPortableLedger(){
|
||||||
|
String methodDescribe = getMethodDescribe("autoPortableLedger");
|
||||||
|
csDeviceService.autoPortableLedger();
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, "success", methodDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||||
|
@PostMapping("/updateRunStatus")
|
||||||
|
@ApiOperation("设备状态调整")
|
||||||
|
@ApiImplicitParams({
|
||||||
|
@ApiImplicitParam(name = "nDid", value = "设备识别码", required = true),
|
||||||
|
@ApiImplicitParam(name = "runStatus", value = "状态", required = true)
|
||||||
|
})
|
||||||
|
public HttpResult<String> updateRunStatus(@RequestParam String nDid, @RequestParam Integer runStatus){
|
||||||
|
String methodDescribe = getMethodDescribe("updateRunStatus");
|
||||||
|
csEquipmentDeliveryService.updateRunStatusBynDid(nDid,runStatus);
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, "success", methodDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||||
|
@PostMapping("/onlineRegister")
|
||||||
|
@ApiOperation("监测设备接入")
|
||||||
|
@ApiImplicitParams({
|
||||||
|
@ApiImplicitParam(name = "projectId", value = "项目id", required = true),
|
||||||
|
@ApiImplicitParam(name = "nDid", value = "设备识别码", required = true)
|
||||||
|
})
|
||||||
|
@ReturnMsg
|
||||||
|
public HttpResult<String> onlineRegister(@RequestParam("projectId") String projectId,@RequestParam("nDid") String nDid){
|
||||||
|
String methodDescribe = getMethodDescribe("onlineRegister");
|
||||||
|
String result = csDeviceService.onlineRegister(projectId,nDid);
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ import java.util.List;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/csLineLatestData")
|
@RequestMapping("/csLineLatestData")
|
||||||
@Api(tags = "暂降事件")
|
@Api(tags = "治理设备模块运行状态记录")
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public class CsLineLatestDataController extends BaseController {
|
public class CsLineLatestDataController extends BaseController {
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ import com.github.tocrhz.mqtt.publisher.MqttPublisher;
|
|||||||
import com.njcn.access.enums.AccessEnum;
|
import com.njcn.access.enums.AccessEnum;
|
||||||
import com.njcn.access.enums.AccessResponseEnum;
|
import com.njcn.access.enums.AccessResponseEnum;
|
||||||
import com.njcn.access.enums.TypeEnum;
|
import com.njcn.access.enums.TypeEnum;
|
||||||
import com.njcn.access.mapper.OverlimitMapper;
|
|
||||||
import com.njcn.access.pojo.RspDataDto;
|
import com.njcn.access.pojo.RspDataDto;
|
||||||
import com.njcn.access.pojo.dto.*;
|
import com.njcn.access.pojo.dto.*;
|
||||||
import com.njcn.access.pojo.dto.file.FileDto;
|
import com.njcn.access.pojo.dto.file.FileDto;
|
||||||
@@ -34,6 +33,7 @@ import com.njcn.csdevice.api.*;
|
|||||||
import com.njcn.csdevice.pojo.dto.PqsCommunicateDto;
|
import com.njcn.csdevice.pojo.dto.PqsCommunicateDto;
|
||||||
import com.njcn.csdevice.pojo.param.CsLineParam;
|
import com.njcn.csdevice.pojo.param.CsLineParam;
|
||||||
import com.njcn.csdevice.pojo.po.*;
|
import com.njcn.csdevice.pojo.po.*;
|
||||||
|
import com.njcn.device.biz.mapper.OverLimitWlMapper;
|
||||||
import com.njcn.device.biz.pojo.po.Overlimit;
|
import com.njcn.device.biz.pojo.po.Overlimit;
|
||||||
import com.njcn.device.biz.utils.COverlimitUtil;
|
import com.njcn.device.biz.utils.COverlimitUtil;
|
||||||
import com.njcn.mq.message.AppAutoDataMessage;
|
import com.njcn.mq.message.AppAutoDataMessage;
|
||||||
@@ -69,6 +69,8 @@ import java.util.stream.Collectors;
|
|||||||
|
|
||||||
import static org.assertj.core.api.AssertionsForClassTypes.assertThat;
|
import static org.assertj.core.api.AssertionsForClassTypes.assertThat;
|
||||||
|
|
||||||
|
;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author hongawen
|
* @author hongawen
|
||||||
* @version 1.0.0
|
* @version 1.0.0
|
||||||
@@ -96,7 +98,7 @@ public class MqttMessageHandler {
|
|||||||
private final CsLineFeignClient csLineFeignClient;
|
private final CsLineFeignClient csLineFeignClient;
|
||||||
private final DevCapacityFeignClient devCapacityFeignClient;
|
private final DevCapacityFeignClient devCapacityFeignClient;
|
||||||
private final EquipmentFeignClient equipmentFeignClient;
|
private final EquipmentFeignClient equipmentFeignClient;
|
||||||
private final OverlimitMapper overlimitMapper;
|
private final OverLimitWlMapper overLimitWlMapper;
|
||||||
private final ChannelObjectUtil channelObjectUtil;
|
private final ChannelObjectUtil channelObjectUtil;
|
||||||
private final WaveFeignClient waveFeignClient;
|
private final WaveFeignClient waveFeignClient;
|
||||||
private final RtFeignClient rtFeignClient;
|
private final RtFeignClient rtFeignClient;
|
||||||
@@ -310,7 +312,7 @@ public class MqttMessageHandler {
|
|||||||
if (Objects.equals(res.getCode(),AccessEnum.SUCCESS.getCode())){
|
if (Objects.equals(res.getCode(),AccessEnum.SUCCESS.getCode())){
|
||||||
int mid = 1;
|
int mid = 1;
|
||||||
//修改装置状态
|
//修改装置状态
|
||||||
csEquipmentDeliveryService.updateStatusBynDid(nDid,AccessEnum.ACCESS.getCode());
|
csEquipmentDeliveryService.updateStatusBynDid(nDid,AccessEnum.ACCESS.getCode(),null,null);
|
||||||
csEquipmentDeliveryService.updateRunStatusBynDid(nDid,AccessEnum.ONLINE.getCode());
|
csEquipmentDeliveryService.updateRunStatusBynDid(nDid,AccessEnum.ONLINE.getCode());
|
||||||
//记录设备上线
|
//记录设备上线
|
||||||
PqsCommunicateDto dto = new PqsCommunicateDto();
|
PqsCommunicateDto dto = new PqsCommunicateDto();
|
||||||
@@ -380,32 +382,27 @@ public class MqttMessageHandler {
|
|||||||
if (Objects.equals(res.getDid(),1)){
|
if (Objects.equals(res.getDid(),1)){
|
||||||
log.info("{},设备数据应答--->更新治理监测点信息和设备容量", nDid);
|
log.info("{},设备数据应答--->更新治理监测点信息和设备容量", nDid);
|
||||||
List<CsDevCapacityPO> list3 = new ArrayList<>();
|
List<CsDevCapacityPO> list3 = new ArrayList<>();
|
||||||
devInfo.forEach(item->{
|
boolean hasZeroClDid = devInfo.stream().anyMatch(item -> item.getClDid() == 0);
|
||||||
//1.更新治理监测点信息
|
//治理设备
|
||||||
CsLineParam csLineParam = new CsLineParam();
|
if (hasZeroClDid) {
|
||||||
if (Objects.equals(item.getClDid(),0)){
|
devInfo.forEach(item->{
|
||||||
csLineParam.setLineId(nDid.concat("0"));
|
if (Objects.equals(item.getClDid(),0)){
|
||||||
|
updateLineInfo(nDid,item);
|
||||||
|
}
|
||||||
//2.录入各个模块设备容量
|
//2.录入各个模块设备容量
|
||||||
CsDevCapacityPO csDevCapacity = new CsDevCapacityPO();
|
CsDevCapacityPO csDevCapacity = new CsDevCapacityPO();
|
||||||
csDevCapacity.setLineId(nDid.concat("0"));
|
csDevCapacity.setLineId(nDid.concat("0"));
|
||||||
csDevCapacity.setCldid(item.getClDid());
|
csDevCapacity.setCldid(item.getClDid());
|
||||||
csDevCapacity.setCapacity(Objects.isNull(item.getCapacityA())?0.0:item.getCapacityA());
|
csDevCapacity.setCapacity(Objects.isNull(item.getCapacityA())?0.0:item.getCapacityA());
|
||||||
list3.add(csDevCapacity);
|
list3.add(csDevCapacity);
|
||||||
} else {
|
});
|
||||||
csLineParam.setLineId(nDid.concat(item.getClDid().toString()));
|
}
|
||||||
}
|
//其余设备
|
||||||
csLineParam.setVolGrade(item.getVolGrade());
|
else {
|
||||||
csLineParam.setPtRatio(item.getPtRatio());
|
devInfo.forEach(item->{
|
||||||
csLineParam.setCtRatio(item.getCtRatio());
|
updateLineInfo(nDid,item);
|
||||||
csLineParam.setConType(item.getConType());
|
});
|
||||||
csLineParam.setLineInterval(item.getStatCycle());
|
}
|
||||||
csLineFeignClient.updateLine(csLineParam);
|
|
||||||
//生成监测点限值
|
|
||||||
Overlimit overlimit = COverlimitUtil.globalAssemble(item.getVolGrade().floatValue(),10f,10f,10f,0,0);
|
|
||||||
overlimit.setId(nDid.concat(item.getClDid().toString()));
|
|
||||||
overlimitMapper.deleteById(nDid.concat(item.getClDid().toString()));
|
|
||||||
overlimitMapper.insert(overlimit);
|
|
||||||
});
|
|
||||||
if (CollectionUtil.isNotEmpty(list3)) {
|
if (CollectionUtil.isNotEmpty(list3)) {
|
||||||
devCapacityFeignClient.addList(list3);
|
devCapacityFeignClient.addList(list3);
|
||||||
//3.更新设备模块个数
|
//3.更新设备模块个数
|
||||||
@@ -416,14 +413,7 @@ public class MqttMessageHandler {
|
|||||||
logDto.setOperate(nDid + "更新电网侧、负载侧监测点信息");
|
logDto.setOperate(nDid + "更新电网侧、负载侧监测点信息");
|
||||||
//1.更新电网侧、负载侧监测点相关信息
|
//1.更新电网侧、负载侧监测点相关信息
|
||||||
devInfo.forEach(item->{
|
devInfo.forEach(item->{
|
||||||
CsLineParam csLineParam = new CsLineParam();
|
updateLineInfo(nDid,item);
|
||||||
csLineParam.setLineId(nDid.concat(item.getClDid().toString()));
|
|
||||||
csLineParam.setVolGrade(item.getVolGrade());
|
|
||||||
csLineParam.setPtRatio(item.getPtRatio());
|
|
||||||
csLineParam.setCtRatio(item.getCtRatio());
|
|
||||||
csLineParam.setConType(item.getConType());
|
|
||||||
csLineParam.setLineInterval(item.getStatCycle());
|
|
||||||
csLineFeignClient.updateLine(csLineParam);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -468,6 +458,22 @@ public class MqttMessageHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void updateLineInfo(String nDid,RspDataDto.LdevInfo item) {
|
||||||
|
CsLineParam csLineParam = new CsLineParam();
|
||||||
|
csLineParam.setLineId(nDid.concat(item.getClDid().toString()));
|
||||||
|
csLineParam.setVolGrade(item.getVolGrade());
|
||||||
|
csLineParam.setPtRatio(item.getPtRatio());
|
||||||
|
csLineParam.setCtRatio(item.getCtRatio());
|
||||||
|
csLineParam.setConType(item.getConType());
|
||||||
|
csLineParam.setLineInterval(item.getStatCycle());
|
||||||
|
csLineFeignClient.updateLine(csLineParam);
|
||||||
|
//生成监测点限值
|
||||||
|
Overlimit overlimit = COverlimitUtil.globalAssemble(item.getVolGrade().floatValue(),10f,10f,10f,0,0);
|
||||||
|
overlimit.setId(nDid.concat(item.getClDid().toString()));
|
||||||
|
overLimitWlMapper.deleteById(nDid.concat(item.getClDid().toString()));
|
||||||
|
overLimitWlMapper.insert(overlimit);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 装置心跳 && 主动数据上送
|
* 装置心跳 && 主动数据上送
|
||||||
* fixme 这边由于接收文件数据时间跨度会很长,途中有其他请求进来会中断之前的程序,目前是记录中断的位置,等处理完成再继续请求接收文件
|
* fixme 这边由于接收文件数据时间跨度会很长,途中有其他请求进来会中断之前的程序,目前是记录中断的位置,等处理完成再继续请求接收文件
|
||||||
|
|||||||
@@ -140,7 +140,7 @@ public class RedisKeyExpirationListener extends KeyExpirationEventMessageListene
|
|||||||
//装置下线
|
//装置下线
|
||||||
csEquipmentDeliveryService.updateRunStatusBynDid(nDid, AccessEnum.OFFLINE.getCode());
|
csEquipmentDeliveryService.updateRunStatusBynDid(nDid, AccessEnum.OFFLINE.getCode());
|
||||||
//装置调整为注册状态
|
//装置调整为注册状态
|
||||||
csEquipmentDeliveryService.updateStatusBynDid(nDid,AccessEnum.REGISTERED.getCode());
|
csEquipmentDeliveryService.updateStatusBynDid(nDid,AccessEnum.REGISTERED.getCode(),null,null);
|
||||||
logDto.setOperate(nDid +"装置离线");
|
logDto.setOperate(nDid +"装置离线");
|
||||||
sendMessage(nDid);
|
sendMessage(nDid);
|
||||||
//记录装置掉线时间
|
//记录装置掉线时间
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
package com.njcn.access.mapper;
|
//package com.njcn.access.mapper;
|
||||||
|
//
|
||||||
|
//
|
||||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
//import com.baomidou.dynamic.datasource.annotation.DS;
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
//import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
import com.njcn.device.biz.pojo.po.Overlimit;
|
//import com.njcn.device.biz.pojo.po.Overlimit;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
//import org.apache.ibatis.annotations.Mapper;
|
||||||
|
//
|
||||||
|
//
|
||||||
/**
|
///**
|
||||||
* <p>
|
// * <p>
|
||||||
* Mapper 接口
|
// * Mapper 接口
|
||||||
* </p>
|
// * </p>
|
||||||
*
|
// *
|
||||||
* @author xy
|
// * @author xy
|
||||||
*/
|
// */
|
||||||
@DS("sjzx")
|
//@DS("sjzx")
|
||||||
@Mapper
|
//@Mapper
|
||||||
public interface OverlimitMapper extends BaseMapper<Overlimit> {
|
//public interface OverlimitMapper extends BaseMapper<Overlimit> {
|
||||||
|
//
|
||||||
}
|
//}
|
||||||
|
|||||||
@@ -54,4 +54,8 @@ public interface ICsDeviceService {
|
|||||||
* @param nDid 设备识别码
|
* @param nDid 设备识别码
|
||||||
*/
|
*/
|
||||||
void wlAccess(String nDid);
|
void wlAccess(String nDid);
|
||||||
|
|
||||||
|
String autoPortableLedger();
|
||||||
|
|
||||||
|
String onlineRegister(String projectId,String nDid);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ public interface ICsEquipmentDeliveryService extends IService<CsEquipmentDeliver
|
|||||||
* 根据网关id修改装置的状态
|
* 根据网关id修改装置的状态
|
||||||
* @param nDid 网关id
|
* @param nDid 网关id
|
||||||
*/
|
*/
|
||||||
void updateStatusBynDid(String nDid,Integer status);
|
void updateStatusBynDid(String nDid,Integer status,String engineeringId, String projectId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据网关id修改软件信息
|
* 根据网关id修改软件信息
|
||||||
|
|||||||
@@ -24,4 +24,6 @@ public interface ICsLedgerService extends IService<CsLedger> {
|
|||||||
*/
|
*/
|
||||||
CsLedger addLedgerTree(CsLedgerParam csLedgerParam);
|
CsLedger addLedgerTree(CsLedgerParam csLedgerParam);
|
||||||
|
|
||||||
|
void updatePortableLedger(String engineeringId, String projectId);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -87,6 +87,7 @@ public class AskDeviceDataServiceImpl implements AskDeviceDataService {
|
|||||||
public boolean downloadFile(String nDid, String name, Integer size, String fileCheck) {
|
public boolean downloadFile(String nDid, String name, Integer size, String fileCheck) {
|
||||||
boolean result = true;
|
boolean result = true;
|
||||||
try {
|
try {
|
||||||
|
redisUtil.saveByKeyWithExpire("isWeb:"+nDid,name,30L);
|
||||||
redisUtil.saveByKeyWithExpire("fileDowning:"+nDid,"fileDowning",300L);
|
redisUtil.saveByKeyWithExpire("fileDowning:"+nDid,"fileDowning",300L);
|
||||||
redisUtil.saveByKey("fileCheck"+nDid+name,fileCheck);
|
redisUtil.saveByKey("fileCheck"+nDid+name,fileCheck);
|
||||||
Object object = getDeviceMid(nDid);
|
Object object = getDeviceMid(nDid);
|
||||||
@@ -104,6 +105,7 @@ public class AskDeviceDataServiceImpl implements AskDeviceDataService {
|
|||||||
redisUtil.delete("fileDowning:"+nDid);
|
redisUtil.delete("fileDowning:"+nDid);
|
||||||
redisUtil.delete("fileCheck"+nDid+name);
|
redisUtil.delete("fileCheck"+nDid+name);
|
||||||
redisUtil.delete("fileDownUserId"+nDid+name);
|
redisUtil.delete("fileDownUserId"+nDid+name);
|
||||||
|
redisUtil.deleteKeysByString("isWeb:"+ nDid);
|
||||||
throw new BusinessException(AlgorithmResponseEnum.FILE_DOWNLOAD_ERROR);
|
throw new BusinessException(AlgorithmResponseEnum.FILE_DOWNLOAD_ERROR);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
@@ -133,8 +133,11 @@ public class CsDevModelServiceImpl implements ICsDevModelService {
|
|||||||
if (ObjectUtil.isNotNull(object)) {
|
if (ObjectUtil.isNotNull(object)) {
|
||||||
csLineFeignClient.updateDataByList(devList,csDevModelPo.getId(),object.toString());
|
csLineFeignClient.updateDataByList(devList,csDevModelPo.getId(),object.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//5.清空模板缓存
|
||||||
|
redisUtil.deleteKeysByString(AppRedisKey.DEV_MODEL);
|
||||||
csLogsFeignClient.addUserLog(logDto);
|
csLogsFeignClient.addUserLog(logDto);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
logDto.setResult(0);
|
logDto.setResult(0);
|
||||||
@@ -964,7 +967,7 @@ public class CsDevModelServiceImpl implements ICsDevModelService {
|
|||||||
if(CollectionUtil.isNotEmpty(setList)) {
|
if(CollectionUtil.isNotEmpty(setList)) {
|
||||||
csDataSetService.addList(setList);
|
csDataSetService.addList(setList);
|
||||||
setList.forEach(item->{
|
setList.forEach(item->{
|
||||||
if (Objects.equals(item.getName(),"统计数据")) {
|
if (Objects.equals(item.getName(),"Ds$Pqd$Stat$01")) {
|
||||||
redisUtil.saveByKeyWithExpire("setId:" + pId,item.getId(),30L);
|
redisUtil.saveByKeyWithExpire("setId:" + pId,item.getId(),30L);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -1271,19 +1274,26 @@ public class CsDevModelServiceImpl implements ICsDevModelService {
|
|||||||
showName = "APF模块8数据模板";
|
showName = "APF模块8数据模板";
|
||||||
break;
|
break;
|
||||||
case "Ds$Pqd$Stat$01":
|
case "Ds$Pqd$Stat$01":
|
||||||
if (Objects.equals(code, DicDataEnum.CONNECT_DEV.getCode()) || Objects.isNull(code)){
|
if (Objects.equals(code, DicDataEnum.CONNECT_DEV.getCode())){
|
||||||
showName = "电网侧数据模板";
|
showName = "电网侧数据模板";
|
||||||
} else if (Objects.equals(code, DicDataEnum.PORTABLE.getCode())){
|
} else if (Objects.equals(code, DicDataEnum.PORTABLE.getCode())){
|
||||||
showName = "监测1#数据模板";
|
showName = "监测1#数据模板";
|
||||||
|
} else {
|
||||||
|
showName = "统计数据";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "Ds$Pqd$Stat$02":
|
case "Ds$Pqd$Stat$02":
|
||||||
if (Objects.equals(code, DicDataEnum.CONNECT_DEV.getCode()) || Objects.isNull(code)){
|
if (Objects.equals(code, DicDataEnum.CONNECT_DEV.getCode())){
|
||||||
showName = "负载侧数据模板";
|
showName = "负载侧数据模板";
|
||||||
} else if (Objects.equals(code, DicDataEnum.PORTABLE.getCode())){
|
} else if (Objects.equals(code, DicDataEnum.PORTABLE.getCode())){
|
||||||
showName = "监测2#数据模板";
|
showName = "监测2#数据模板";
|
||||||
|
} else {
|
||||||
|
showName = "统计数据";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case "Ds$Pqd$Rt$01":
|
||||||
|
showName = "实时数据";
|
||||||
|
break;
|
||||||
//波形参数名称
|
//波形参数名称
|
||||||
case "Wave_Param_Position":
|
case "Wave_Param_Position":
|
||||||
showName = "录波记录位置";
|
showName = "录波记录位置";
|
||||||
|
|||||||
@@ -22,9 +22,7 @@ import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
|||||||
import com.njcn.common.pojo.exception.BusinessException;
|
import com.njcn.common.pojo.exception.BusinessException;
|
||||||
import com.njcn.csdevice.api.*;
|
import com.njcn.csdevice.api.*;
|
||||||
import com.njcn.csdevice.enums.AlgorithmResponseEnum;
|
import com.njcn.csdevice.enums.AlgorithmResponseEnum;
|
||||||
import com.njcn.csdevice.pojo.param.CsDevModelRelationAddParm;
|
import com.njcn.csdevice.pojo.param.*;
|
||||||
import com.njcn.csdevice.pojo.param.CsLedgerParam;
|
|
||||||
import com.njcn.csdevice.pojo.param.CsLineParam;
|
|
||||||
import com.njcn.csdevice.pojo.po.*;
|
import com.njcn.csdevice.pojo.po.*;
|
||||||
import com.njcn.csdevice.pojo.vo.CsEquipmentDeliveryVO;
|
import com.njcn.csdevice.pojo.vo.CsEquipmentDeliveryVO;
|
||||||
import com.njcn.redis.pojo.enums.AppRedisKey;
|
import com.njcn.redis.pojo.enums.AppRedisKey;
|
||||||
@@ -33,6 +31,9 @@ import com.njcn.system.api.DicDataFeignClient;
|
|||||||
import com.njcn.system.api.DictTreeFeignClient;
|
import com.njcn.system.api.DictTreeFeignClient;
|
||||||
import com.njcn.system.enums.DicDataEnum;
|
import com.njcn.system.enums.DicDataEnum;
|
||||||
import com.njcn.system.pojo.po.SysDicTreePO;
|
import com.njcn.system.pojo.po.SysDicTreePO;
|
||||||
|
import com.njcn.user.api.UserFeignClient;
|
||||||
|
import com.njcn.user.enums.AppRoleEnum;
|
||||||
|
import com.njcn.user.pojo.vo.UserVO;
|
||||||
import com.njcn.web.utils.RequestUtil;
|
import com.njcn.web.utils.RequestUtil;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
@@ -80,6 +81,10 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
private final ChannelObjectUtil channelObjectUtil;
|
private final ChannelObjectUtil channelObjectUtil;
|
||||||
private final CsLineFeignClient csLineFeignClient;
|
private final CsLineFeignClient csLineFeignClient;
|
||||||
private final DataSetFeignClient dataSetFeignClient;
|
private final DataSetFeignClient dataSetFeignClient;
|
||||||
|
private final CsMarketDataFeignClient csMarketDataFeignClient;
|
||||||
|
private final UserFeignClient userFeignClient;
|
||||||
|
private final EngineeringFeignClient engineeringFeignClient;
|
||||||
|
private final AppProjectFeignClient appProjectFeignClient;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional(rollbackFor = {Exception.class})
|
||||||
@@ -130,15 +135,16 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
throw new BusinessException(AccessResponseEnum.MISSING_CLIENT);
|
throw new BusinessException(AccessResponseEnum.MISSING_CLIENT);
|
||||||
}
|
}
|
||||||
//5.判断当前流程是否是合法的
|
//5.判断当前流程是否是合法的
|
||||||
if (csEquipmentDeliveryVO.getProcess() > type){
|
//note(重要说明) 这边流程原先是三个阶段,在实际应用中嫌麻烦,简化为一个流程
|
||||||
logDto.setResult(0);
|
// if (csEquipmentDeliveryVO.getProcess() > type){
|
||||||
logDto.setFailReason(AccessResponseEnum.PROCESS_SAME_ERROR.getMessage());
|
// logDto.setResult(0);
|
||||||
throw new BusinessException(AccessResponseEnum.PROCESS_SAME_ERROR);
|
// logDto.setFailReason(AccessResponseEnum.PROCESS_SAME_ERROR.getMessage());
|
||||||
} else if (csEquipmentDeliveryVO.getProcess() < type){
|
// throw new BusinessException(AccessResponseEnum.PROCESS_SAME_ERROR);
|
||||||
logDto.setResult(0);
|
// } else if (csEquipmentDeliveryVO.getProcess() < type){
|
||||||
logDto.setFailReason(AccessResponseEnum.PROCESS_MISSING_ERROR.getMessage());
|
// logDto.setResult(0);
|
||||||
throw new BusinessException(AccessResponseEnum.PROCESS_MISSING_ERROR);
|
// logDto.setFailReason(AccessResponseEnum.PROCESS_MISSING_ERROR.getMessage());
|
||||||
}
|
// throw new BusinessException(AccessResponseEnum.PROCESS_MISSING_ERROR);
|
||||||
|
// }
|
||||||
//6.询问设备支持的主题信息
|
//6.询问设备支持的主题信息
|
||||||
//将支持的主题入库
|
//将支持的主题入库
|
||||||
askTopic(nDid);
|
askTopic(nDid);
|
||||||
@@ -289,16 +295,16 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
po.setSubUserId(RequestUtil.getUserIndex());
|
po.setSubUserId(RequestUtil.getUserIndex());
|
||||||
po.setDeviceId(vo.getId());
|
po.setDeviceId(vo.getId());
|
||||||
csDeviceUserService.saveBatch(Collections.singletonList(po));
|
csDeviceUserService.saveBatch(Collections.singletonList(po));
|
||||||
//6.修改装置状态
|
//6.修改装置状态;修改设备接入的工程、项目
|
||||||
csEquipmentDeliveryService.updateStatusBynDid(devAccessParam.getNDid(), AccessEnum.REGISTERED.getCode());
|
csEquipmentDeliveryService.updateStatusBynDid(devAccessParam.getNDid(), AccessEnum.REGISTERED.getCode(),devAccessParam.getEngineeringId(), devAccessParam.getProjectId());
|
||||||
//7.发起自动接入请求
|
//7.发起自动接入请求
|
||||||
devAccessAskTemplate(devAccessParam.getNDid(),version,1);
|
devAccessAskTemplate(devAccessParam.getNDid(),version,1);
|
||||||
//8.删除redis监测点模板信息
|
//8.删除redis监测点模板信息
|
||||||
redisUtil.delete(AppRedisKey.MODEL + devAccessParam.getNDid());
|
redisUtil.delete(AppRedisKey.MODEL + devAccessParam.getNDid());
|
||||||
redisUtil.delete(AppRedisKey.LINE + devAccessParam.getNDid());
|
redisUtil.delete(AppRedisKey.LINE + devAccessParam.getNDid());
|
||||||
//存储日志
|
//9.存储日志
|
||||||
csLogsFeignClient.addUserLog(logDto);
|
csLogsFeignClient.addUserLog(logDto);
|
||||||
//存储设备调试日志表
|
//10.存储设备调试日志表
|
||||||
CsEquipmentProcessPO csEquipmentProcess = new CsEquipmentProcessPO();
|
CsEquipmentProcessPO csEquipmentProcess = new CsEquipmentProcessPO();
|
||||||
csEquipmentProcess.setDevId(devAccessParam.getNDid());
|
csEquipmentProcess.setDevId(devAccessParam.getNDid());
|
||||||
csEquipmentProcess.setOperator(RequestUtil.getUserIndex());
|
csEquipmentProcess.setOperator(RequestUtil.getUserIndex());
|
||||||
@@ -309,6 +315,14 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
csEquipmentProcess.setStatus(1);
|
csEquipmentProcess.setStatus(1);
|
||||||
}
|
}
|
||||||
processFeignClient.add(csEquipmentProcess);
|
processFeignClient.add(csEquipmentProcess);
|
||||||
|
//11.这里会出现工程用户接入设备时,如果当前工程用户并没有关注,接入之后应该将用户和工程关联起来
|
||||||
|
List<UserVO> users = userFeignClient.getUserVOByIdList(Collections.singletonList(RequestUtil.getUserIndex())).getData();
|
||||||
|
if (CollectionUtil.isNotEmpty(users)) {
|
||||||
|
UserVO userVO = users.get(0);
|
||||||
|
if (CollectionUtil.isNotEmpty(userVO.getRoleCode()) && userVO.getRoleCode().contains(AppRoleEnum.ENGINEERING_USER.getCode())) {
|
||||||
|
csMarketDataFeignClient.insertData(userVO.getId(), devAccessParam.getEngineeringId());
|
||||||
|
}
|
||||||
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
logDto.setResult(0);
|
logDto.setResult(0);
|
||||||
logDto.setFailReason(e.getMessage());
|
logDto.setFailReason(e.getMessage());
|
||||||
@@ -327,12 +341,13 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
param.setNDid(nDid);
|
param.setNDid(nDid);
|
||||||
param.setStatus(1);
|
param.setStatus(1);
|
||||||
param.setRunStatus(1);
|
param.setRunStatus(1);
|
||||||
boolean isConnectDev = DicDataEnum.CONNECT_DEV.getCode().equals(dictTreeFeignClient.queryById(csEquipmentDeliveryVO.getDevType()).getData().getCode());
|
// boolean isConnectDev = DicDataEnum.CONNECT_DEV.getCode().equals(dictTreeFeignClient.queryById(csEquipmentDeliveryVO.getDevType()).getData().getCode());
|
||||||
if (isConnectDev) {
|
// if (isConnectDev) {
|
||||||
param.setProcess(2);
|
// param.setProcess(2);
|
||||||
} else {
|
// } else {
|
||||||
param.setProcess(4);
|
// param.setProcess(4);
|
||||||
}
|
// }
|
||||||
|
param.setProcess(4);
|
||||||
csEquipmentDeliveryService.devResetFactory(param);
|
csEquipmentDeliveryService.devResetFactory(param);
|
||||||
//清除关系表
|
//清除关系表
|
||||||
QueryWrapper<CsLedger> csLedgerQueryWrapper = new QueryWrapper<>();
|
QueryWrapper<CsLedger> csLedgerQueryWrapper = new QueryWrapper<>();
|
||||||
@@ -396,9 +411,13 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
CsEquipmentDeliveryVO vo = equipmentFeignClient.queryEquipmentByndid(nDid).getData();
|
CsEquipmentDeliveryVO vo = equipmentFeignClient.queryEquipmentByndid(nDid).getData();
|
||||||
List<CsLinePO> csLinePoList = new ArrayList<>();
|
List<CsLinePO> csLinePoList = new ArrayList<>();
|
||||||
//1.录入装置台账信息
|
//1.录入装置台账信息
|
||||||
|
//note 1、这边发现便携式设备注册时,如果没有工程 项目,后期特殊处理非常的麻烦,这边接入时,先查询工程 项目,如果没有则创建;如果存在则直接使用;
|
||||||
|
//note 2、查询之前已经接入过的便携式设备,如果存在修改台账信息,添加工程、项目
|
||||||
|
String projectId = this.autoPortableLedger();
|
||||||
|
//新增便携式设备
|
||||||
CsLedgerParam csLedgerParam = new CsLedgerParam();
|
CsLedgerParam csLedgerParam = new CsLedgerParam();
|
||||||
csLedgerParam.setId(vo.getId());
|
csLedgerParam.setId(vo.getId());
|
||||||
csLedgerParam.setPid("0");
|
csLedgerParam.setPid(projectId);
|
||||||
csLedgerParam.setName(vo.getName());
|
csLedgerParam.setName(vo.getName());
|
||||||
csLedgerParam.setLevel(2);
|
csLedgerParam.setLevel(2);
|
||||||
csLedgerParam.setSort(0);
|
csLedgerParam.setSort(0);
|
||||||
@@ -445,7 +464,7 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
//5.发起自动接入请求
|
//5.发起自动接入请求
|
||||||
Thread.sleep(2000);
|
Thread.sleep(2000);
|
||||||
//先获取版本
|
//先获取版本
|
||||||
// String version = csTopicService.getVersion(nDid);
|
//String version = csTopicService.getVersion(nDid);
|
||||||
String version = "V1";
|
String version = "V1";
|
||||||
devAccessAskTemplate(nDid,version,1);
|
devAccessAskTemplate(nDid,version,1);
|
||||||
//6.修改流程,便携式设备接入成功即为实际环境
|
//6.修改流程,便携式设备接入成功即为实际环境
|
||||||
@@ -481,6 +500,144 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
this.devAccessAskTemplate(nDid,version,1);
|
this.devAccessAskTemplate(nDid,version,1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String autoPortableLedger() {
|
||||||
|
CsEngineeringPO csEngineeringPO = engineeringFeignClient.getEngineeringByName("便携式工程").getData();
|
||||||
|
if (csEngineeringPO == null) {
|
||||||
|
//新增便携式工程
|
||||||
|
CsEngineeringAddParm param = new CsEngineeringAddParm();
|
||||||
|
param.setName("便携式工程");
|
||||||
|
param.setProvince("320000000000");
|
||||||
|
param.setCity("320100000000");
|
||||||
|
param.setDescription("便携式工程");
|
||||||
|
param.setSort(Integer.MAX_VALUE);
|
||||||
|
csEngineeringPO = engineeringFeignClient.addEngineering(param).getData();
|
||||||
|
}
|
||||||
|
|
||||||
|
AppProjectPO csProjectPO = appProjectFeignClient.getProjectByName("便携式项目").getData();
|
||||||
|
if (csProjectPO == null) {
|
||||||
|
//新增便携式项目
|
||||||
|
AppProjectAddParm param = new AppProjectAddParm();
|
||||||
|
param.setEngineeringId(csEngineeringPO.getId());
|
||||||
|
param.setName("便携式项目");
|
||||||
|
param.setArea("园区");
|
||||||
|
param.setDescription("便携式项目");
|
||||||
|
param.setTopoIds(Collections.singletonList("99ed9b9c8cf9007cc4d2ac4c7127b7e4"));
|
||||||
|
param.setSort(Integer.MAX_VALUE);
|
||||||
|
csProjectPO = appProjectFeignClient.addPortableProject(param).getData();
|
||||||
|
}
|
||||||
|
//修改已存在的便携式设备
|
||||||
|
csLedgerService.updatePortableLedger(csEngineeringPO.getId(),csProjectPO.getId());
|
||||||
|
return csProjectPO.getId();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public String onlineRegister(String projectId,String nDid) {
|
||||||
|
String result = "fail";
|
||||||
|
// 根据模板接入设备
|
||||||
|
DeviceLogDTO logDto = new DeviceLogDTO();
|
||||||
|
logDto.setUserName(RequestUtil.getUserNickname());
|
||||||
|
logDto.setLoginName(RequestUtil.getUsername());
|
||||||
|
logDto.setOperate("监测设备"+nDid+"注册、接入");
|
||||||
|
logDto.setResult(1);
|
||||||
|
try {
|
||||||
|
// 设备状态判断
|
||||||
|
checkDeviceStatus(nDid);
|
||||||
|
// 询问设备支持的主题信息,并将支持的主题入库
|
||||||
|
askAndStoreTopics(nDid);
|
||||||
|
Thread.sleep(2000);
|
||||||
|
// MQTT询问装置用的模板,并判断库中是否存在模板
|
||||||
|
checkDeviceModel(nDid);
|
||||||
|
Thread.sleep(2000);
|
||||||
|
CsEquipmentDeliveryVO vo = equipmentFeignClient.queryEquipmentByndid(nDid).getData();
|
||||||
|
List<CsLinePO> csLinePoList = new ArrayList<>();
|
||||||
|
//1.录入装置台账信息
|
||||||
|
//新增便携式设备
|
||||||
|
CsLedgerParam csLedgerParam = new CsLedgerParam();
|
||||||
|
csLedgerParam.setId(vo.getId());
|
||||||
|
csLedgerParam.setPid(projectId);
|
||||||
|
csLedgerParam.setName(vo.getName());
|
||||||
|
csLedgerParam.setLevel(2);
|
||||||
|
csLedgerParam.setSort(0);
|
||||||
|
csLedgerService.addLedgerTree(csLedgerParam);
|
||||||
|
//2.根据模板获取监测点个数,插入监测点表
|
||||||
|
Thread.sleep(2000);
|
||||||
|
List<CsModelDto> modelList = channelObjectUtil.objectToList(redisUtil.getObjectByKey(AppRedisKey.MODEL + nDid),CsModelDto.class);
|
||||||
|
if (CollUtil.isEmpty(modelList)) {
|
||||||
|
throwExceptionAndLog(nDid,AccessResponseEnum.MODEL_ERROR, logDto);
|
||||||
|
}
|
||||||
|
List<CsDataSet> list = csDataSetService.getDataSetData(modelList.get(0).getModelId());
|
||||||
|
list.forEach(item->{
|
||||||
|
CsLinePO po = new CsLinePO();
|
||||||
|
po.setLineId(nDid + item.getClDev().toString());
|
||||||
|
po.setName(item.getClDev().toString() + "#监测点");
|
||||||
|
po.setStatus(1);
|
||||||
|
po.setClDid(item.getClDev());
|
||||||
|
po.setLineNo(item.getClDev());
|
||||||
|
po.setRunStatus(0);
|
||||||
|
po.setDeviceId(vo.getId());
|
||||||
|
po.setDataSetId(item.getId());
|
||||||
|
po.setDataModelId(item.getPid());
|
||||||
|
//防止主键重复
|
||||||
|
QueryWrapper<CsLinePO> qw = new QueryWrapper<>();
|
||||||
|
qw.eq("line_id",po.getLineId());
|
||||||
|
if(csLineService.getBaseMapper().selectList(qw).isEmpty()){
|
||||||
|
csLinePoList.add(po);
|
||||||
|
}
|
||||||
|
//3.生成台账树监测点数据
|
||||||
|
CsLedgerParam param = new CsLedgerParam();
|
||||||
|
param.setId(nDid + item.getClDev().toString());
|
||||||
|
param.setPid(vo.getId());
|
||||||
|
param.setName(item.getClDev().toString() + "#监测点");
|
||||||
|
param.setLevel(3);
|
||||||
|
param.setSort(0);
|
||||||
|
csLedgerService.addLedgerTree(param);
|
||||||
|
});
|
||||||
|
csLineService.saveBatch(csLinePoList);
|
||||||
|
redisUtil.saveByKeyWithExpire("accessLineInfo:" + nDid,csLinePoList,30L);
|
||||||
|
//4.生成装置和模板的关系表
|
||||||
|
CsDevModelRelationAddParm csDevModelRelationAddParm = new CsDevModelRelationAddParm();
|
||||||
|
csDevModelRelationAddParm.setDevId(vo.getId());
|
||||||
|
csDevModelRelationAddParm.setModelId(modelList.get(0).getModelId());
|
||||||
|
csDevModelRelationAddParm.setDid(modelList.get(0).getDid());
|
||||||
|
csDevModelRelationService.addDevModelRelation(csDevModelRelationAddParm);
|
||||||
|
//5.绑定装置和人的关系
|
||||||
|
CsDeviceUserPO po = new CsDeviceUserPO();
|
||||||
|
po.setPrimaryUserId(RequestUtil.getUserIndex());
|
||||||
|
po.setStatus("1");
|
||||||
|
po.setSubUserId(RequestUtil.getUserIndex());
|
||||||
|
po.setDeviceId(vo.getId());
|
||||||
|
csDeviceUserService.saveBatch(Collections.singletonList(po));
|
||||||
|
|
||||||
|
//发起自动接入请求
|
||||||
|
Thread.sleep(2000);
|
||||||
|
//先获取版本
|
||||||
|
String version = "V1";
|
||||||
|
devAccessAskTemplate(nDid,version,1);
|
||||||
|
//6.修改流程,接入成功即为实际环境
|
||||||
|
csEquipmentDeliveryService.updateProcessBynDid(nDid,4);
|
||||||
|
//7.存储日志
|
||||||
|
csLogsFeignClient.addUserLog(logDto);
|
||||||
|
//9.删除redis监测点模板信息
|
||||||
|
redisUtil.delete(AppRedisKey.MODEL + nDid);
|
||||||
|
redisUtil.delete(AppRedisKey.LINE + nDid);
|
||||||
|
//判断接入状态
|
||||||
|
Thread.sleep(5000);
|
||||||
|
Object object = redisUtil.getObjectByKey("online" + nDid);
|
||||||
|
if (Objects.nonNull(object)) {
|
||||||
|
result = "success";
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
logDto.setResult(0);
|
||||||
|
logDto.setFailReason(e.getMessage());
|
||||||
|
csLogsFeignClient.addUserLog(logDto);
|
||||||
|
resetFactory(nDid);
|
||||||
|
throw new BusinessException(e.getMessage());
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
private void checkDeviceStatus(String nDid) {
|
private void checkDeviceStatus(String nDid) {
|
||||||
DeviceLogDTO logDto = createLogDto("当前设备"+nDid+"状态判断");
|
DeviceLogDTO logDto = createLogDto("当前设备"+nDid+"状态判断");
|
||||||
CsEquipmentDeliveryVO csEquipmentDeliveryVO = csEquipmentDeliveryService.queryEquipmentBynDid(nDid);
|
CsEquipmentDeliveryVO csEquipmentDeliveryVO = csEquipmentDeliveryService.queryEquipmentBynDid(nDid);
|
||||||
@@ -492,7 +649,7 @@ public class CsDeviceServiceImpl implements ICsDeviceService {
|
|||||||
throwExceptionAndLog(nDid,AccessResponseEnum.DEV_NOT_FIND, logDto);
|
throwExceptionAndLog(nDid,AccessResponseEnum.DEV_NOT_FIND, logDto);
|
||||||
}
|
}
|
||||||
String code = sysDicTreePo.getCode();
|
String code = sysDicTreePo.getCode();
|
||||||
if (!Objects.equals(code, DicDataEnum.PORTABLE.getCode())) {
|
if (!Objects.equals(code, DicDataEnum.PORTABLE.getCode()) && !Objects.equals(code, DicDataEnum.DEV_CLD.getCode())) {
|
||||||
throwExceptionAndLog(nDid,AccessResponseEnum.DEV_IS_NOT_PORTABLE, logDto);
|
throwExceptionAndLog(nDid,AccessResponseEnum.DEV_IS_NOT_PORTABLE, logDto);
|
||||||
}
|
}
|
||||||
if (!mqttUtil.judgeClientOnline("NJCN-" + nDid.substring(nDid.length() - 6))) {
|
if (!mqttUtil.judgeClientOnline("NJCN-" + nDid.substring(nDid.length() - 6))) {
|
||||||
|
|||||||
@@ -41,9 +41,15 @@ public class CsEquipmentDeliveryServiceImpl extends ServiceImpl<CsEquipmentDeliv
|
|||||||
private final CsLogsFeignClient csLogsFeignClient;
|
private final CsLogsFeignClient csLogsFeignClient;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateStatusBynDid(String nDid,Integer status) {
|
public void updateStatusBynDid(String nDid,Integer status,String engineeringId, String projectId) {
|
||||||
LambdaUpdateWrapper<CsEquipmentDeliveryPO> lambdaUpdateWrapper = new LambdaUpdateWrapper<>();
|
LambdaUpdateWrapper<CsEquipmentDeliveryPO> lambdaUpdateWrapper = new LambdaUpdateWrapper<>();
|
||||||
lambdaUpdateWrapper.set(CsEquipmentDeliveryPO::getStatus,status).eq(CsEquipmentDeliveryPO::getNdid,nDid);
|
lambdaUpdateWrapper.set(CsEquipmentDeliveryPO::getStatus,status).eq(CsEquipmentDeliveryPO::getNdid,nDid);
|
||||||
|
if (engineeringId != null && !engineeringId.isEmpty()) {
|
||||||
|
lambdaUpdateWrapper.set(CsEquipmentDeliveryPO::getAssociatedEngineering,engineeringId);
|
||||||
|
}
|
||||||
|
if (projectId != null && !projectId.isEmpty()) {
|
||||||
|
lambdaUpdateWrapper.set(CsEquipmentDeliveryPO::getAssociatedProject,projectId);
|
||||||
|
}
|
||||||
this.update(lambdaUpdateWrapper);
|
this.update(lambdaUpdateWrapper);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
package com.njcn.access.service.impl;
|
package com.njcn.access.service.impl;
|
||||||
|
|
||||||
|
import cn.hutool.core.collection.CollectionUtil;
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.njcn.access.mapper.CsLedgerMapper;
|
import com.njcn.access.mapper.CsLedgerMapper;
|
||||||
import com.njcn.access.service.ICsLedgerService;
|
import com.njcn.access.service.ICsLedgerService;
|
||||||
@@ -8,8 +10,11 @@ import com.njcn.csdevice.pojo.po.CsLedger;
|
|||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import org.springframework.beans.BeanUtils;
|
import org.springframework.beans.BeanUtils;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>
|
* <p>
|
||||||
@@ -43,4 +48,35 @@ public class CsLedgerServiceImpl extends ServiceImpl<CsLedgerMapper, CsLedger> i
|
|||||||
return csLedger;
|
return csLedger;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Transactional(rollbackFor = {Exception.class})
|
||||||
|
public void updatePortableLedger(String engineeringId, String projectId) {
|
||||||
|
//先查询有没有历史的便携式设备
|
||||||
|
List<CsLedger> portableDevices = this.list(
|
||||||
|
new LambdaQueryWrapper<CsLedger>()
|
||||||
|
.eq(CsLedger::getPid, "0")
|
||||||
|
.eq(CsLedger::getLevel, 2)
|
||||||
|
.eq(CsLedger::getState, 1));
|
||||||
|
if (CollectionUtil.isNotEmpty(portableDevices)) {
|
||||||
|
portableDevices.forEach(item->{
|
||||||
|
item.setPid(projectId);
|
||||||
|
item.setPids("0," + engineeringId + "," + projectId);
|
||||||
|
});
|
||||||
|
this.updateBatchById(portableDevices);
|
||||||
|
//获取监测点id
|
||||||
|
List<String> devList = portableDevices.stream().map(CsLedger::getId).collect(Collectors.toList());
|
||||||
|
LambdaQueryWrapper<CsLedger> queryWrapper = new LambdaQueryWrapper<>();
|
||||||
|
queryWrapper.in(CsLedger::getPid, devList).eq(CsLedger::getState,1).eq(CsLedger::getLevel,3);
|
||||||
|
List<CsLedger> pointList = this.list(queryWrapper);
|
||||||
|
if (CollectionUtil.isNotEmpty(pointList)) {
|
||||||
|
pointList.forEach(item->{
|
||||||
|
String pidS = item.getPids();
|
||||||
|
String devPid = pidS.split(",")[1];
|
||||||
|
item.setPids("0," + engineeringId + "," + projectId + "," + devPid);
|
||||||
|
});
|
||||||
|
this.updateBatchById(pointList);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ public class RtServiceImpl implements IRtService {
|
|||||||
long timestamp = item.getDataTimeSec() - 8*3600;
|
long timestamp = item.getDataTimeSec() - 8*3600;
|
||||||
baseRealDataSet.setDataTime(getTime(timestamp));
|
baseRealDataSet.setDataTime(getTime(timestamp));
|
||||||
publisher.send("/Web/RealData/" + lineId, new Gson().toJson(baseRealDataSet), 1, false);
|
publisher.send("/Web/RealData/" + lineId, new Gson().toJson(baseRealDataSet), 1, false);
|
||||||
} else if (dataSet.getName().contains("实时数据")) {
|
} else if (dataSet.getName().contains("实时数据") || dataSet.getName().contains("Ds$Pqd$Rt$01")) {
|
||||||
//用户Id
|
//用户Id
|
||||||
Object redisObject = redisUtil.getObjectByKey("rtDataUserId:"+lineId);
|
Object redisObject = redisUtil.getObjectByKey("rtDataUserId:"+lineId);
|
||||||
if (ObjectUtil.isNotNull(redisObject)) {
|
if (ObjectUtil.isNotNull(redisObject)) {
|
||||||
@@ -225,9 +225,15 @@ public class RtServiceImpl implements IRtService {
|
|||||||
baseRealDataSet.setVRmsC(FloatUtils.get2Float(map.get("Pq_RmsLUCA")));
|
baseRealDataSet.setVRmsC(FloatUtils.get2Float(map.get("Pq_RmsLUCA")));
|
||||||
}
|
}
|
||||||
//基波电压幅值
|
//基波电压幅值
|
||||||
baseRealDataSet.setV1A(FloatUtils.get2Float(map.get("Pq_RmsFundUA")));
|
if (conType == 0) {
|
||||||
baseRealDataSet.setV1B(FloatUtils.get2Float(map.get("Pq_RmsFundUB")));
|
baseRealDataSet.setV1A(FloatUtils.get2Float(map.get("Pq_RmsFundUA")));
|
||||||
baseRealDataSet.setV1C(FloatUtils.get2Float(map.get("Pq_RmsFundUC")));
|
baseRealDataSet.setV1B(FloatUtils.get2Float(map.get("Pq_RmsFundUB")));
|
||||||
|
baseRealDataSet.setV1C(FloatUtils.get2Float(map.get("Pq_RmsFundUC")));
|
||||||
|
} else {
|
||||||
|
baseRealDataSet.setV1A(FloatUtils.get2Float(map.get("Pq_RmsFundLUAB")));
|
||||||
|
baseRealDataSet.setV1B(FloatUtils.get2Float(map.get("Pq_RmsFundLUBC")));
|
||||||
|
baseRealDataSet.setV1C(FloatUtils.get2Float(map.get("Pq_RmsFundLUCA")));
|
||||||
|
}
|
||||||
//电流有效值
|
//电流有效值
|
||||||
baseRealDataSet.setIRmsA(FloatUtils.get2Float(map.get("Pq_RmsIA")));
|
baseRealDataSet.setIRmsA(FloatUtils.get2Float(map.get("Pq_RmsIA")));
|
||||||
baseRealDataSet.setIRmsB(FloatUtils.get2Float(map.get("Pq_RmsIB")));
|
baseRealDataSet.setIRmsB(FloatUtils.get2Float(map.get("Pq_RmsIB")));
|
||||||
@@ -237,21 +243,39 @@ public class RtServiceImpl implements IRtService {
|
|||||||
baseRealDataSet.setI1B(FloatUtils.get2Float(map.get("Pq_RmsFundIB")));
|
baseRealDataSet.setI1B(FloatUtils.get2Float(map.get("Pq_RmsFundIB")));
|
||||||
baseRealDataSet.setI1C(FloatUtils.get2Float(map.get("Pq_RmsFundIC")));
|
baseRealDataSet.setI1C(FloatUtils.get2Float(map.get("Pq_RmsFundIC")));
|
||||||
//电压偏差
|
//电压偏差
|
||||||
baseRealDataSet.setVDevA(FloatUtils.get2Float(map.get("Pq_UDevA")));
|
if (conType == 0) {
|
||||||
baseRealDataSet.setVDevB(FloatUtils.get2Float(map.get("Pq_UDevB")));
|
baseRealDataSet.setVDevA(FloatUtils.get2Float(map.get("Pq_UDevA")));
|
||||||
baseRealDataSet.setVDevC(FloatUtils.get2Float(map.get("Pq_UDevC")));
|
baseRealDataSet.setVDevB(FloatUtils.get2Float(map.get("Pq_UDevB")));
|
||||||
|
baseRealDataSet.setVDevC(FloatUtils.get2Float(map.get("Pq_UDevC")));
|
||||||
|
} else {
|
||||||
|
baseRealDataSet.setVDevA(FloatUtils.get2Float(map.get("Pq_LUDevAB")));
|
||||||
|
baseRealDataSet.setVDevB(FloatUtils.get2Float(map.get("Pq_LUDevBC")));
|
||||||
|
baseRealDataSet.setVDevC(FloatUtils.get2Float(map.get("Pq_LUDevCA")));
|
||||||
|
}
|
||||||
//基波电压相位
|
//基波电压相位
|
||||||
baseRealDataSet.setV1AngA(FloatUtils.get2Float(map.get("Pq_FundUAngA")));
|
if (conType == 0) {
|
||||||
baseRealDataSet.setV1AngB(FloatUtils.get2Float(map.get("Pq_FundUAngB")));
|
baseRealDataSet.setV1AngA(FloatUtils.get2Float(map.get("Pq_FundUAngA")));
|
||||||
baseRealDataSet.setV1AngC(FloatUtils.get2Float(map.get("Pq_FundUAngC")));
|
baseRealDataSet.setV1AngB(FloatUtils.get2Float(map.get("Pq_FundUAngB")));
|
||||||
|
baseRealDataSet.setV1AngC(FloatUtils.get2Float(map.get("Pq_FundUAngC")));
|
||||||
|
} else {
|
||||||
|
baseRealDataSet.setV1AngA(FloatUtils.get2Float(map.get("Pq_FundLUAngAB")));
|
||||||
|
baseRealDataSet.setV1AngB(FloatUtils.get2Float(map.get("Pq_FundLUAngBC")));
|
||||||
|
baseRealDataSet.setV1AngC(FloatUtils.get2Float(map.get("Pq_FundLUAngCA")));
|
||||||
|
}
|
||||||
//基波电流相位
|
//基波电流相位
|
||||||
baseRealDataSet.setI1AngA(FloatUtils.get2Float(map.get("Pq_FundIAngA")));
|
baseRealDataSet.setI1AngA(FloatUtils.get2Float(map.get("Pq_FundIAngA")));
|
||||||
baseRealDataSet.setI1AngB(FloatUtils.get2Float(map.get("Pq_FundIAngB")));
|
baseRealDataSet.setI1AngB(FloatUtils.get2Float(map.get("Pq_FundIAngB")));
|
||||||
baseRealDataSet.setI1AngC(FloatUtils.get2Float(map.get("Pq_FundIAngC")));
|
baseRealDataSet.setI1AngC(FloatUtils.get2Float(map.get("Pq_FundIAngC")));
|
||||||
//电压总谐波畸变率
|
//电压总谐波畸变率
|
||||||
baseRealDataSet.setVThdA(FloatUtils.get2Float(map.get("Pq_ThdUA")));
|
if (conType == 0) {
|
||||||
baseRealDataSet.setVThdB(FloatUtils.get2Float(map.get("Pq_ThdUB")));
|
baseRealDataSet.setVThdA(FloatUtils.get2Float(map.get("Pq_ThdUA")));
|
||||||
baseRealDataSet.setVThdC(FloatUtils.get2Float(map.get("Pq_ThdUC")));
|
baseRealDataSet.setVThdB(FloatUtils.get2Float(map.get("Pq_ThdUB")));
|
||||||
|
baseRealDataSet.setVThdC(FloatUtils.get2Float(map.get("Pq_ThdUC")));
|
||||||
|
} else {
|
||||||
|
baseRealDataSet.setVThdA(FloatUtils.get2Float(map.get("Pq_ThdLUAB")));
|
||||||
|
baseRealDataSet.setVThdB(FloatUtils.get2Float(map.get("Pq_ThdLUBC")));
|
||||||
|
baseRealDataSet.setVThdC(FloatUtils.get2Float(map.get("Pq_ThdLUCA")));
|
||||||
|
}
|
||||||
//电流总谐波畸变率
|
//电流总谐波畸变率
|
||||||
baseRealDataSet.setIThdA(FloatUtils.get2Float(map.get("Pq_ThdIA")));
|
baseRealDataSet.setIThdA(FloatUtils.get2Float(map.get("Pq_ThdIA")));
|
||||||
baseRealDataSet.setIThdB(FloatUtils.get2Float(map.get("Pq_ThdIB")));
|
baseRealDataSet.setIThdB(FloatUtils.get2Float(map.get("Pq_ThdIB")));
|
||||||
@@ -281,10 +305,10 @@ public class RtServiceImpl implements IRtService {
|
|||||||
baseRealDataSet.setPfC(FloatUtils.get2Float(map.get("Pq_PFC")));
|
baseRealDataSet.setPfC(FloatUtils.get2Float(map.get("Pq_PFC")));
|
||||||
baseRealDataSet.setPfTot(FloatUtils.get2Float(map.get("Pq_TotPFM")));
|
baseRealDataSet.setPfTot(FloatUtils.get2Float(map.get("Pq_TotPFM")));
|
||||||
//基波功率因数
|
//基波功率因数
|
||||||
baseRealDataSet.setDpfA(FloatUtils.get2Float(map.get("Pq_DPFA")));
|
baseRealDataSet.setDpfA(FloatUtils.get2Float(map.get("Pq_DFA")));
|
||||||
baseRealDataSet.setDpfB(FloatUtils.get2Float(map.get("Pq_DPFB")));
|
baseRealDataSet.setDpfB(FloatUtils.get2Float(map.get("Pq_DFB")));
|
||||||
baseRealDataSet.setDpfC(FloatUtils.get2Float(map.get("Pq_DPFC")));
|
baseRealDataSet.setDpfC(FloatUtils.get2Float(map.get("Pq_DFC")));
|
||||||
baseRealDataSet.setDpfTot(FloatUtils.get2Float(map.get("Pq_TotDPFM")));
|
baseRealDataSet.setDpfTot(FloatUtils.get2Float(map.get("Pq_TotDFM")));
|
||||||
return baseRealDataSet;
|
return baseRealDataSet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,9 @@ package com.njcn.stat.service.impl;
|
|||||||
|
|
||||||
import cn.hutool.core.collection.CollectionUtil;
|
import cn.hutool.core.collection.CollectionUtil;
|
||||||
import com.alibaba.nacos.shaded.com.google.gson.Gson;
|
import com.alibaba.nacos.shaded.com.google.gson.Gson;
|
||||||
|
import com.njcn.access.api.CsDeviceFeignClient;
|
||||||
import com.njcn.access.api.CsLineLatestDataFeignClient;
|
import com.njcn.access.api.CsLineLatestDataFeignClient;
|
||||||
|
import com.njcn.access.enums.AccessEnum;
|
||||||
import com.njcn.access.pojo.po.CsLineLatestData;
|
import com.njcn.access.pojo.po.CsLineLatestData;
|
||||||
import com.njcn.access.utils.ChannelObjectUtil;
|
import com.njcn.access.utils.ChannelObjectUtil;
|
||||||
import com.njcn.common.pojo.exception.BusinessException;
|
import com.njcn.common.pojo.exception.BusinessException;
|
||||||
@@ -57,6 +59,12 @@ public class StatServiceImpl implements IStatService {
|
|||||||
private final RedisUtil redisUtil;
|
private final RedisUtil redisUtil;
|
||||||
private final ChannelObjectUtil channelObjectUtil;
|
private final ChannelObjectUtil channelObjectUtil;
|
||||||
private final CsLineLatestDataFeignClient csLineLatestDataFeignClient;
|
private final CsLineLatestDataFeignClient csLineLatestDataFeignClient;
|
||||||
|
private final CsDeviceFeignClient csDeviceFeignClient;
|
||||||
|
private static final Map<String, String> PHASE_MAPPING = new HashMap<String, String>() {{
|
||||||
|
put("AB", "A");
|
||||||
|
put("BC", "B");
|
||||||
|
put("CA", "C");
|
||||||
|
}};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
@@ -101,7 +109,6 @@ public class StatServiceImpl implements IStatService {
|
|||||||
//云前置设备
|
//云前置设备
|
||||||
else if (Objects.equals(DicDataEnum.DEV_CLD.getCode(),code)) {
|
else if (Objects.equals(DicDataEnum.DEV_CLD.getCode(),code)) {
|
||||||
lineId = appAutoDataMessage.getId() + appAutoDataMessage.getMsg().getClDid();
|
lineId = appAutoDataMessage.getId() + appAutoDataMessage.getMsg().getClDid();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//获取当前设备信息
|
//获取当前设备信息
|
||||||
@@ -128,7 +135,8 @@ public class StatServiceImpl implements IStatService {
|
|||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
int clDid = Objects.equals(DicDataEnum.DEV_CLD.getCode(),code)?1:appAutoDataMessage.getMsg().getClDid();
|
boolean flag = Objects.equals(DicDataEnum.DEV_CLD.getCode(), code) && Objects.equals(po.getDevAccessMethod(), "CLD");
|
||||||
|
int clDid = flag?1:appAutoDataMessage.getMsg().getClDid();
|
||||||
String key = AppRedisKey.DEV_MODEL.concat(dataArrayParam.getId() + dataArrayParam.getDid() + clDid + dataArrayParam.getStatMethod() + dataArrayParam.getIdx());
|
String key = AppRedisKey.DEV_MODEL.concat(dataArrayParam.getId() + dataArrayParam.getDid() + clDid + dataArrayParam.getStatMethod() + dataArrayParam.getIdx());
|
||||||
Object object = redisUtil.getObjectByKey(key);
|
Object object = redisUtil.getObjectByKey(key);
|
||||||
List<CsDataArray> dataArrayList;
|
List<CsDataArray> dataArrayList;
|
||||||
@@ -137,10 +145,11 @@ public class StatServiceImpl implements IStatService {
|
|||||||
} else {
|
} else {
|
||||||
dataArrayList = objectToList(object);
|
dataArrayList = objectToList(object);
|
||||||
}
|
}
|
||||||
List<String> result = assembleData(lineId,dataArrayList,item,appAutoDataMessage.getMsg().getClDid(),dataArrayParam.getStatMethod(),po.getProcess(),code);
|
List<String> result = assembleData(lineId,dataArrayList,item,appAutoDataMessage.getMsg().getClDid(),dataArrayParam.getStatMethod(),po.getProcess(),code,po.getDevAccessMethod());
|
||||||
recordList.addAll(result);
|
recordList.addAll(result);
|
||||||
//获取时间
|
//获取时间
|
||||||
long devTime = Objects.equals(DicDataEnum.DEV_CLD.getCode(),code)?item.getDataTimeSec():item.getDataTimeSec()-8*3600;
|
boolean timeFlag = Objects.equals(DicDataEnum.DEV_CLD.getCode(), code) && Objects.equals(po.getDevAccessMethod(), "CLD");
|
||||||
|
long devTime = timeFlag?item.getDataTimeSec():item.getDataTimeSec()-8*3600;
|
||||||
time = Instant.ofEpochSecond(devTime)
|
time = Instant.ofEpochSecond(devTime)
|
||||||
.atZone(ZoneId.systemDefault())
|
.atZone(ZoneId.systemDefault())
|
||||||
.toLocalDateTime();
|
.toLocalDateTime();
|
||||||
@@ -154,7 +163,12 @@ public class StatServiceImpl implements IStatService {
|
|||||||
csLineLatestData.setTimeId(Objects.isNull(time) ? LocalDateTime.now() : time);
|
csLineLatestData.setTimeId(Objects.isNull(time) ? LocalDateTime.now() : time);
|
||||||
csLineLatestDataFeignClient.addData(csLineLatestData);
|
csLineLatestDataFeignClient.addData(csLineLatestData);
|
||||||
}
|
}
|
||||||
|
//判断设备运行状态
|
||||||
|
if (!Objects.isNull(po.getRunStatus()) && po.getRunStatus() == 1) {
|
||||||
|
csDeviceFeignClient.updateRunStatus(appAutoDataMessage.getId(), AccessEnum.ONLINE.getCode());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
System.gc();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -180,7 +194,7 @@ public class StatServiceImpl implements IStatService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
redisUtil.saveByKey(AppRedisKey.LINE_POSITION+id,map);
|
redisUtil.saveByKeyWithExpire(AppRedisKey.LINE_POSITION+id,map,30L);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -199,7 +213,7 @@ public class StatServiceImpl implements IStatService {
|
|||||||
/**
|
/**
|
||||||
* influxDB数据组装
|
* influxDB数据组装
|
||||||
*/
|
*/
|
||||||
public List<String> assembleData(String lineId,List<CsDataArray> dataArrayList,AppAutoDataMessage.DataArray item,Integer clDid,String statMethod,Integer process,String devType) {
|
public List<String> assembleData(String lineId,List<CsDataArray> dataArrayList,AppAutoDataMessage.DataArray item,Integer clDid,String statMethod,Integer process,String devType,String accessMethod) {
|
||||||
List<String> records = new ArrayList<String>();
|
List<String> records = new ArrayList<String>();
|
||||||
//解码
|
//解码
|
||||||
List<Float> floats = PubUtils.byteArrayToFloatList(Base64.getDecoder().decode(item.getData()));
|
List<Float> floats = PubUtils.byteArrayToFloatList(Base64.getDecoder().decode(item.getData()));
|
||||||
@@ -216,15 +230,19 @@ public class StatServiceImpl implements IStatService {
|
|||||||
Map<String, String> tags = new HashMap<>();
|
Map<String, String> tags = new HashMap<>();
|
||||||
tags.put(InfluxDBTableConstant.LINE_ID,lineId);
|
tags.put(InfluxDBTableConstant.LINE_ID,lineId);
|
||||||
tags.put(InfluxDBTableConstant.PHASIC_TYPE,dataArrayList.get(i).getPhase());
|
tags.put(InfluxDBTableConstant.PHASIC_TYPE,dataArrayList.get(i).getPhase());
|
||||||
|
//todo 不清楚之前为啥要修改相别,这边按字典配置相别无法查询到数据,先改回来
|
||||||
|
//tags.put(InfluxDBTableConstant.PHASIC_TYPE,Objects.isNull(PHASE_MAPPING.get(dataArrayList.get(i).getPhase()))?dataArrayList.get(i).getPhase():PHASE_MAPPING.get(dataArrayList.get(i).getPhase()));
|
||||||
tags.put(InfluxDBTableConstant.VALUE_TYPE,statMethod);
|
tags.put(InfluxDBTableConstant.VALUE_TYPE,statMethod);
|
||||||
tags.put(InfluxDBTableConstant.CL_DID,clDid.toString());
|
tags.put(InfluxDBTableConstant.CL_DID,clDid.toString());
|
||||||
tags.put(InfluxDBTableConstant.PROCESS,process.toString());
|
tags.put(InfluxDBTableConstant.PROCESS,process.toString());
|
||||||
|
tags.put(InfluxDBTableConstant.QUALITY_FLAG,"0");
|
||||||
Map<String,Object> fields = new HashMap<>();
|
Map<String,Object> fields = new HashMap<>();
|
||||||
//这边特殊处理,如果数据为3.14159,则将数据置为null
|
//这边特殊处理,如果数据为3.14159,则将数据置为null
|
||||||
fields.put(dataArrayList.get(i).getName(),Objects.equals(floats.get(i),3.14159f) ? null:floats.get(i));
|
fields.put(dataArrayList.get(i).getName(),Objects.equals(floats.get(i),3.14159f) ? null:floats.get(i));
|
||||||
fields.put(InfluxDBTableConstant.IS_ABNORMAL,item.getDataTag());
|
fields.put(InfluxDBTableConstant.IS_ABNORMAL,item.getDataTag());
|
||||||
//fixme 这边前置传递的应该是UTC时间,但是前置说是传递的北京时间,讨论了一下没太理解。这边暂时先这样处理,influx入库处理成北京时间,减去8小时。
|
//fixme 这边前置传递的应该是UTC时间,但是前置说是传递的北京时间,讨论了一下没太理解。这边暂时先这样处理,influx入库处理成北京时间,减去8小时。
|
||||||
Point point = influxDbUtils.pointBuilder(tableName, Objects.equals(DicDataEnum.DEV_CLD.getCode(),devType)?item.getDataTimeSec():item.getDataTimeSec()-8*3600, TimeUnit.SECONDS, tags, fields);
|
boolean flag = Objects.equals(DicDataEnum.DEV_CLD.getCode(), devType) && Objects.equals(accessMethod, "CLD");
|
||||||
|
Point point = influxDbUtils.pointBuilder(tableName, flag?item.getDataTimeSec():item.getDataTimeSec()-8*3600, TimeUnit.SECONDS, tags, fields);
|
||||||
BatchPoints batchPoints = BatchPoints.database(influxDbUtils.getDbName()).retentionPolicy("").consistency(InfluxDB.ConsistencyLevel.ALL).build();
|
BatchPoints batchPoints = BatchPoints.database(influxDbUtils.getDbName()).retentionPolicy("").consistency(InfluxDB.ConsistencyLevel.ALL).build();
|
||||||
batchPoints.point(point);
|
batchPoints.point(point);
|
||||||
records.add(batchPoints.lineProtocol());
|
records.add(batchPoints.lineProtocol());
|
||||||
@@ -243,5 +261,4 @@ public class StatServiceImpl implements IStatService {
|
|||||||
}
|
}
|
||||||
return urlList;
|
return urlList;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,6 +41,9 @@ public interface ZlConstant {
|
|||||||
*/
|
*/
|
||||||
String EVT_PARAM_TM = "Evt_Param_Tm";
|
String EVT_PARAM_TM = "Evt_Param_Tm";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 幅值
|
||||||
|
*/
|
||||||
|
String EVT_PARAM_VVADEPTH = "Evt_Param_VVaDepth";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -94,6 +94,11 @@
|
|||||||
<artifactId>common-oss</artifactId>
|
<artifactId>common-oss</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.njcn</groupId>
|
||||||
|
<artifactId>event-common</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|||||||
@@ -184,6 +184,6 @@ public class CsWaveAnalysisServiceImpl implements ICsWaveAnalysisService {
|
|||||||
map.put(2,item.getLineId());
|
map.put(2,item.getLineId());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
redisUtil.saveByKeyWithExpire(AppRedisKey.LINE_POSITION+id,map,600L);
|
redisUtil.saveByKeyWithExpire(AppRedisKey.LINE_POSITION+id,map,30L);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,9 @@ package com.njcn.zlevent.service.impl;
|
|||||||
|
|
||||||
import cn.hutool.core.collection.CollectionUtil;
|
import cn.hutool.core.collection.CollectionUtil;
|
||||||
import cn.hutool.core.util.IdUtil;
|
import cn.hutool.core.util.IdUtil;
|
||||||
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import com.alibaba.nacos.shaded.com.google.gson.Gson;
|
import com.alibaba.nacos.shaded.com.google.gson.Gson;
|
||||||
|
import com.baomidou.dynamic.datasource.annotation.DSTransactional;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||||
import com.njcn.common.pojo.exception.BusinessException;
|
import com.njcn.common.pojo.exception.BusinessException;
|
||||||
import com.njcn.csdevice.api.CsLineFeignClient;
|
import com.njcn.csdevice.api.CsLineFeignClient;
|
||||||
@@ -14,6 +16,8 @@ import com.njcn.csdevice.pojo.po.CsLinePO;
|
|||||||
import com.njcn.csdevice.pojo.po.WlRecord;
|
import com.njcn.csdevice.pojo.po.WlRecord;
|
||||||
import com.njcn.csdevice.pojo.vo.CsEquipmentDeliveryVO;
|
import com.njcn.csdevice.pojo.vo.CsEquipmentDeliveryVO;
|
||||||
import com.njcn.csharmonic.pojo.po.CsEventPO;
|
import com.njcn.csharmonic.pojo.po.CsEventPO;
|
||||||
|
import com.njcn.event.common.mapper.WlRmpEventDetailMapper;
|
||||||
|
import com.njcn.event.pojo.po.RmpEventDetailPO;
|
||||||
import com.njcn.influx.pojo.constant.InfluxDBTableConstant;
|
import com.njcn.influx.pojo.constant.InfluxDBTableConstant;
|
||||||
import com.njcn.influx.utils.InfluxDbUtils;
|
import com.njcn.influx.utils.InfluxDbUtils;
|
||||||
import com.njcn.mq.message.AppEventMessage;
|
import com.njcn.mq.message.AppEventMessage;
|
||||||
@@ -27,7 +31,6 @@ import com.njcn.system.enums.DicDataEnum;
|
|||||||
import com.njcn.system.pojo.dto.EpdDTO;
|
import com.njcn.system.pojo.dto.EpdDTO;
|
||||||
import com.njcn.system.pojo.po.DictData;
|
import com.njcn.system.pojo.po.DictData;
|
||||||
import com.njcn.zlevent.pojo.constant.ZlConstant;
|
import com.njcn.zlevent.pojo.constant.ZlConstant;
|
||||||
import com.njcn.zlevent.pojo.po.CsEventLogs;
|
|
||||||
import com.njcn.zlevent.service.ICsEventLogsService;
|
import com.njcn.zlevent.service.ICsEventLogsService;
|
||||||
import com.njcn.zlevent.service.ICsEventService;
|
import com.njcn.zlevent.service.ICsEventService;
|
||||||
import com.njcn.zlevent.service.IEventService;
|
import com.njcn.zlevent.service.IEventService;
|
||||||
@@ -49,6 +52,7 @@ import java.time.ZoneId;
|
|||||||
import java.time.format.DateTimeFormatter;
|
import java.time.format.DateTimeFormatter;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 类的介绍:
|
* 类的介绍:
|
||||||
@@ -72,9 +76,10 @@ public class EventServiceImpl implements IEventService {
|
|||||||
private final ICsEventLogsService csEventLogsService;
|
private final ICsEventLogsService csEventLogsService;
|
||||||
private final SendEventUtils sendEventUtils;
|
private final SendEventUtils sendEventUtils;
|
||||||
private final WlRecordFeignClient wlRecordFeignClient;
|
private final WlRecordFeignClient wlRecordFeignClient;
|
||||||
|
private final WlRmpEventDetailMapper wlRmpEventDetailMapper;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@DSTransactional
|
||||||
public void analysis(AppEventMessage appEventMessage) {
|
public void analysis(AppEventMessage appEventMessage) {
|
||||||
List<CsEventPO> list1 = new ArrayList<>();
|
List<CsEventPO> list1 = new ArrayList<>();
|
||||||
List<String> records = new ArrayList<String>();
|
List<String> records = new ArrayList<String>();
|
||||||
@@ -96,12 +101,21 @@ public class EventServiceImpl implements IEventService {
|
|||||||
try {
|
try {
|
||||||
if (devModel) {
|
if (devModel) {
|
||||||
if (Objects.equals(appEventMessage.getDid(),1)){
|
if (Objects.equals(appEventMessage.getDid(),1)){
|
||||||
lineId = new Gson().fromJson(String.valueOf(redisUtil.getObjectByKey(AppRedisKey.LINE_POSITION+appEventMessage.getId())), Map.class).get("0").toString();
|
Object object = new Gson().fromJson(String.valueOf(redisUtil.getObjectByKey(AppRedisKey.LINE_POSITION+appEventMessage.getId())), Map.class).get("0");
|
||||||
|
if (ObjectUtil.isNotNull(object)) {
|
||||||
|
lineId = object.toString();
|
||||||
|
}
|
||||||
} else if (Objects.equals(appEventMessage.getDid(),2)){
|
} else if (Objects.equals(appEventMessage.getDid(),2)){
|
||||||
lineId = new Gson().fromJson(String.valueOf(redisUtil.getObjectByKey(AppRedisKey.LINE_POSITION+appEventMessage.getId())), Map.class).get(appEventMessage.getMsg().getClDid().toString()).toString();
|
Object object = new Gson().fromJson(String.valueOf(redisUtil.getObjectByKey(AppRedisKey.LINE_POSITION+appEventMessage.getId())), Map.class).get(appEventMessage.getMsg().getClDid().toString());
|
||||||
|
if (ObjectUtil.isNotNull(object)) {
|
||||||
|
lineId = object.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
lineId = new Gson().fromJson(String.valueOf(redisUtil.getObjectByKey(AppRedisKey.LINE_POSITION+appEventMessage.getId())), Map.class).get(appEventMessage.getMsg().getClDid().toString()).toString();
|
Object object = new Gson().fromJson(String.valueOf(redisUtil.getObjectByKey(AppRedisKey.LINE_POSITION+appEventMessage.getId())), Map.class).get(appEventMessage.getMsg().getClDid().toString());
|
||||||
|
if (ObjectUtil.isNotNull(object)) {
|
||||||
|
lineId = object.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//处理事件数据
|
//处理事件数据
|
||||||
@@ -111,9 +125,9 @@ public class EventServiceImpl implements IEventService {
|
|||||||
//判断事件是否存在,如果存在则不处理
|
//判断事件是否存在,如果存在则不处理
|
||||||
LambdaQueryWrapper<CsEventPO> queryWrapper = new LambdaQueryWrapper<>();
|
LambdaQueryWrapper<CsEventPO> queryWrapper = new LambdaQueryWrapper<>();
|
||||||
queryWrapper.eq(CsEventPO::getDeviceId,po.getId())
|
queryWrapper.eq(CsEventPO::getDeviceId,po.getId())
|
||||||
.eq(CsEventPO::getTag,tag)
|
.eq(CsEventPO::getTag,item.getName())
|
||||||
.eq(CsEventPO::getStartTime,eventTime)
|
.eq(CsEventPO::getStartTime,eventTime)
|
||||||
.eq(CsEventPO::getLineId,lineId);
|
.eq(ObjectUtil.isNotNull(lineId),CsEventPO::getLineId,lineId);
|
||||||
List<CsEventPO> eventList = csEventService.list(queryWrapper);
|
List<CsEventPO> eventList = csEventService.list(queryWrapper);
|
||||||
if (CollectionUtil.isEmpty(eventList)) {
|
if (CollectionUtil.isEmpty(eventList)) {
|
||||||
id = IdUtil.fastSimpleUUID();
|
id = IdUtil.fastSimpleUUID();
|
||||||
@@ -150,6 +164,12 @@ public class EventServiceImpl implements IEventService {
|
|||||||
if (Objects.equals(param.getName(),ZlConstant.EVT_PARAM_TM)){
|
if (Objects.equals(param.getName(),ZlConstant.EVT_PARAM_TM)){
|
||||||
csEvent.setPersistTime(Double.parseDouble(param.getData().toString()));
|
csEvent.setPersistTime(Double.parseDouble(param.getData().toString()));
|
||||||
}
|
}
|
||||||
|
if (Objects.equals(param.getName(),ZlConstant.EVT_PARAM_VVADEPTH)) {
|
||||||
|
csEvent.setAmplitude(Double.parseDouble(param.getData().toString()));
|
||||||
|
}
|
||||||
|
if (Objects.equals(param.getName(),"Evt_Param_Phase")) {
|
||||||
|
csEvent.setPhase(param.getData().toString());
|
||||||
|
}
|
||||||
fields.put(param.getName(),param.getData());
|
fields.put(param.getName(),param.getData());
|
||||||
}
|
}
|
||||||
//只有治理型号的设备有监测位置
|
//只有治理型号的设备有监测位置
|
||||||
@@ -169,20 +189,16 @@ public class EventServiceImpl implements IEventService {
|
|||||||
records.add(batchPoints.lineProtocol());
|
records.add(batchPoints.lineProtocol());
|
||||||
}
|
}
|
||||||
list1.add(csEvent);
|
list1.add(csEvent);
|
||||||
//事件处理日志库
|
|
||||||
CsEventLogs csEventLogs = new CsEventLogs();
|
|
||||||
csEventLogs.setLineId(lineId);
|
|
||||||
csEventLogs.setDeviceId(po.getId());
|
|
||||||
csEventLogs.setStartTime(timeFormat(item.getDataTimeSec(),item.getDataTimeUSec()));
|
|
||||||
csEventLogs.setTag(item.getName());
|
|
||||||
csEventLogs.setStatus(1);
|
|
||||||
csEventLogs.setTime(LocalDateTime.now());
|
|
||||||
csEventLogsService.save(csEventLogs);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//cs_event入库
|
//cs_event入库
|
||||||
if (CollectionUtil.isNotEmpty(list1)){
|
if (CollectionUtil.isNotEmpty(list1)){
|
||||||
csEventService.saveBatch(list1);
|
csEventService.saveBatch(list1);
|
||||||
|
//同步数据到 r_mp_event_detail 只有暂态事件再同步
|
||||||
|
List<CsEventPO> filterList = list1.stream().filter(csEvent -> Objects.equals(csEvent.getType(), 0)).collect(Collectors.toList());
|
||||||
|
if (CollectionUtil.isNotEmpty(filterList)) {
|
||||||
|
filterList.forEach(this::insertEvent);
|
||||||
|
}
|
||||||
//推送事件逻辑处理 && cs_event_user入库
|
//推送事件逻辑处理 && cs_event_user入库
|
||||||
for (AppEventMessage.DataArray item : dataArray) {
|
for (AppEventMessage.DataArray item : dataArray) {
|
||||||
sendEventUtils.sendUser(1,item.getType(),po.getId(),item.getName(),eventTime,id,po.getNdid());
|
sendEventUtils.sendUser(1,item.getType(),po.getId(),item.getName(),eventTime,id,po.getNdid());
|
||||||
@@ -193,18 +209,64 @@ public class EventServiceImpl implements IEventService {
|
|||||||
influxDbUtils.batchInsert(influxDbUtils.getDbName(), "", InfluxDB.ConsistencyLevel.ALL, TimeUnit.MILLISECONDS, records);
|
influxDbUtils.batchInsert(influxDbUtils.getDbName(), "", InfluxDB.ConsistencyLevel.ALL, TimeUnit.MILLISECONDS, records);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
CsEventLogs csEventLogs = new CsEventLogs();
|
log.error("事件入库异常:{}",e.getMessage());
|
||||||
csEventLogs.setLineId(lineId);
|
|
||||||
csEventLogs.setDeviceId(po.getId());
|
|
||||||
csEventLogs.setStartTime(eventTime);
|
|
||||||
csEventLogs.setTag(tag);
|
|
||||||
csEventLogs.setStatus(0);
|
|
||||||
csEventLogs.setTime(LocalDateTime.now());
|
|
||||||
csEventLogs.setRemark(e.getMessage());
|
|
||||||
csEventLogsService.save(csEventLogs);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void insertEvent(CsEventPO item) {
|
||||||
|
RmpEventDetailPO rmpEventDetailPo = new RmpEventDetailPO();
|
||||||
|
rmpEventDetailPo.setEventId(item.getId());
|
||||||
|
rmpEventDetailPo.setMeasurementPointId(item.getLineId());
|
||||||
|
rmpEventDetailPo.setStartTime(item.getStartTime());
|
||||||
|
rmpEventDetailPo.setEventType(getEventType(item.getTag()));
|
||||||
|
rmpEventDetailPo.setFeatureAmplitude(item.getAmplitude());
|
||||||
|
rmpEventDetailPo.setDuration(item.getPersistTime());
|
||||||
|
rmpEventDetailPo.setEventDescribe(getTag(item.getTag()));
|
||||||
|
rmpEventDetailPo.setDealFlag(0);
|
||||||
|
rmpEventDetailPo.setFileFlag(0);
|
||||||
|
rmpEventDetailPo.setPhase(item.getPhase());
|
||||||
|
wlRmpEventDetailMapper.insert(rmpEventDetailPo);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEventType(String tag) {
|
||||||
|
switch (tag) {
|
||||||
|
case "Evt_Sys_DipStr":
|
||||||
|
DictData dip = dicDataFeignClient.getDicDataByCode(DicDataEnum.VOLTAGE_DIP.getCode()).getData();
|
||||||
|
tag = dip.getId();
|
||||||
|
break;
|
||||||
|
case "Evt_Sys_SwlStr":
|
||||||
|
DictData rise = dicDataFeignClient.getDicDataByCode(DicDataEnum.VOLTAGE_RISE.getCode()).getData();
|
||||||
|
tag = rise.getId();
|
||||||
|
break;
|
||||||
|
case "Evt_Sys_IntrStr":
|
||||||
|
DictData interruptions = dicDataFeignClient.getDicDataByCode(DicDataEnum.SHORT_INTERRUPTIONS.getCode()).getData();
|
||||||
|
tag = interruptions.getId();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
tag = "Un_Know";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return tag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTag(String tag) {
|
||||||
|
switch (tag) {
|
||||||
|
case "Evt_Sys_DipStr":
|
||||||
|
tag = DicDataEnum.VOLTAGE_DIP.getCode();
|
||||||
|
break;
|
||||||
|
case "Evt_Sys_SwlStr":
|
||||||
|
tag = DicDataEnum.VOLTAGE_RISE.getCode();
|
||||||
|
break;
|
||||||
|
case "Evt_Sys_IntrStr":
|
||||||
|
tag = DicDataEnum.SHORT_INTERRUPTIONS.getCode();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
tag = "Un_Know";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return tag;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
public void getPortableData(AppEventMessage appEventMessage) {
|
public void getPortableData(AppEventMessage appEventMessage) {
|
||||||
@@ -265,7 +327,7 @@ public class EventServiceImpl implements IEventService {
|
|||||||
po.setStartTime(LocalDateTime.parse(cldLogMessage.getTime(), DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));
|
po.setStartTime(LocalDateTime.parse(cldLogMessage.getTime(), DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));
|
||||||
po.setTag(cldLogMessage.getLog());
|
po.setTag(cldLogMessage.getLog());
|
||||||
po.setClDid(1);
|
po.setClDid(1);
|
||||||
po.setLevel(3);
|
po.setLevel(channelLevel(cldLogMessage.getGrade()));
|
||||||
po.setProcess(4);
|
po.setProcess(4);
|
||||||
po.setCode(cldLogMessage.getCode());
|
po.setCode(cldLogMessage.getCode());
|
||||||
//前置告警
|
//前置告警
|
||||||
@@ -289,6 +351,29 @@ public class EventServiceImpl implements IEventService {
|
|||||||
csEventService.save(po);
|
csEventService.save(po);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理告警等级
|
||||||
|
*/
|
||||||
|
public int channelLevel(String grade) {
|
||||||
|
int result;
|
||||||
|
switch (grade) {
|
||||||
|
case "DEBUG":
|
||||||
|
result = 4;
|
||||||
|
break;
|
||||||
|
case "WARN":
|
||||||
|
result = 6;
|
||||||
|
break;
|
||||||
|
case "ERROR":
|
||||||
|
result = 7;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
result = 5;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 处理电压
|
* 处理电压
|
||||||
* @param vol
|
* @param vol
|
||||||
@@ -347,7 +432,7 @@ public class EventServiceImpl implements IEventService {
|
|||||||
map.put(2,item.getLineId());
|
map.put(2,item.getLineId());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
redisUtil.saveByKeyWithExpire(AppRedisKey.LINE_POSITION+id,map,600L);
|
redisUtil.saveByKeyWithExpire(AppRedisKey.LINE_POSITION+id,map,30L);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ import com.njcn.oss.constant.OssPath;
|
|||||||
import com.njcn.oss.utils.FileStorageUtil;
|
import com.njcn.oss.utils.FileStorageUtil;
|
||||||
import com.njcn.redis.pojo.enums.AppRedisKey;
|
import com.njcn.redis.pojo.enums.AppRedisKey;
|
||||||
import com.njcn.redis.utils.RedisUtil;
|
import com.njcn.redis.utils.RedisUtil;
|
||||||
import com.njcn.user.api.UserFeignClient;
|
|
||||||
import com.njcn.zlevent.param.CsEventParam;
|
import com.njcn.zlevent.param.CsEventParam;
|
||||||
import com.njcn.zlevent.pojo.dto.FileInfoDto;
|
import com.njcn.zlevent.pojo.dto.FileInfoDto;
|
||||||
import com.njcn.zlevent.pojo.dto.FileStreamDto;
|
import com.njcn.zlevent.pojo.dto.FileStreamDto;
|
||||||
@@ -270,7 +269,7 @@ public class FileServiceImpl implements IFileService {
|
|||||||
+ ",nowStep:" + appFileMessage.getMsg().getFrameCurr()
|
+ ",nowStep:" + appFileMessage.getMsg().getFrameCurr()
|
||||||
+ ",userId:" + userIndex
|
+ ",userId:" + userIndex
|
||||||
+"}";
|
+"}";
|
||||||
publisher.send("/Web/Progress/" + appFileMessage.getId(), new Gson().toJson(json), 1, false);
|
publisher.send("/Web/Progress/" + appFileMessage.getId(), new Gson().toJson(json), 2, false);
|
||||||
if (!Objects.isNull(filePath)){
|
if (!Objects.isNull(filePath)){
|
||||||
redisUtil.saveByKeyWithExpire("downloadFilePath:" + appFileMessage.getId() + appFileMessage.getMsg().getName(),filePath,60L);
|
redisUtil.saveByKeyWithExpire("downloadFilePath:" + appFileMessage.getId() + appFileMessage.getMsg().getName(),filePath,60L);
|
||||||
}
|
}
|
||||||
@@ -280,6 +279,7 @@ public class FileServiceImpl implements IFileService {
|
|||||||
//2.缓存了判断收到的报文个数是否和总个数一致,一致则解析文件;不一致则更新缓存
|
//2.缓存了判断收到的报文个数是否和总个数一致,一致则解析文件;不一致则更新缓存
|
||||||
//3.超时判断: 30s未收到相关文件信息,核查文件个数,看丢失哪些帧,重新请求
|
//3.超时判断: 30s未收到相关文件信息,核查文件个数,看丢失哪些帧,重新请求
|
||||||
else {
|
else {
|
||||||
|
Object isWeb = redisUtil.getObjectByKey("isWeb:" + appFileMessage.getId());
|
||||||
redisUtil.saveByKey("handleEvent:" + appFileMessage.getId(),"doing");
|
redisUtil.saveByKey("handleEvent:" + appFileMessage.getId(),"doing");
|
||||||
if (appFileMessage.getMsg().getFrameTotal() == 1){
|
if (appFileMessage.getMsg().getFrameTotal() == 1){
|
||||||
//解析文件入库
|
//解析文件入库
|
||||||
@@ -289,14 +289,20 @@ public class FileServiceImpl implements IFileService {
|
|||||||
csEventLogs.setNowStep(1);
|
csEventLogs.setNowStep(1);
|
||||||
csEventLogs.setAllStep(1);
|
csEventLogs.setAllStep(1);
|
||||||
csEventLogs.setIsAll(1);
|
csEventLogs.setIsAll(1);
|
||||||
//更新文件信息
|
if (Objects.isNull(isWeb)) {
|
||||||
csWaveService.updateCsWave(fileName);
|
//更新文件信息
|
||||||
//波形文件关联事件
|
csWaveService.updateCsWave(fileName);
|
||||||
filePath = filePath.replaceAll(GeneralConstant.CFG,"").replaceAll(GeneralConstant.DAT,"");
|
//波形文件关联事件
|
||||||
List<String> eventList = correlateEvents(fileInfoDto,filePath,fileName);
|
filePath = filePath.replaceAll(GeneralConstant.CFG,"").replaceAll(GeneralConstant.DAT,"");
|
||||||
//波形文件解析成图片
|
List<String> eventList = correlateEvents(fileInfoDto,filePath,fileName);
|
||||||
if (CollectionUtil.isNotEmpty(eventList) && devModel){
|
if (CollectionUtil.isNotEmpty(eventList) && devModel){
|
||||||
eventList.forEach(wavePicFeignClient::getWavePics);
|
eventList.forEach(item -> {
|
||||||
|
//波形文件解析成图片
|
||||||
|
wavePicFeignClient.getWavePics(item);
|
||||||
|
//同步更新r_mp_event_detail,将波形路径录入
|
||||||
|
wavePicFeignClient.updateEventById(item);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//解析完删除、处理缓存
|
//解析完删除、处理缓存
|
||||||
removeInfoUtils.deleteEventInfo(appFileMessage.getId(),fileName);
|
removeInfoUtils.deleteEventInfo(appFileMessage.getId(),fileName);
|
||||||
@@ -335,14 +341,20 @@ public class FileServiceImpl implements IFileService {
|
|||||||
csEventLogs.setAllStep(appFileMessage.getMsg().getFrameTotal());
|
csEventLogs.setAllStep(appFileMessage.getMsg().getFrameTotal());
|
||||||
csEventLogs.setIsAll(1);
|
csEventLogs.setIsAll(1);
|
||||||
log.info("当前文件 {} 帧,这是第 {} 帧报文,全部收到,解析成功!", appFileMessage.getMsg().getFrameTotal(), appFileMessage.getMsg().getFrameCurr());
|
log.info("当前文件 {} 帧,这是第 {} 帧报文,全部收到,解析成功!", appFileMessage.getMsg().getFrameTotal(), appFileMessage.getMsg().getFrameCurr());
|
||||||
//修改文件信息
|
if (Objects.isNull(isWeb)) {
|
||||||
csWaveService.updateCsWave(fileName);
|
//修改文件信息
|
||||||
//波形文件关联事件
|
csWaveService.updateCsWave(fileName);
|
||||||
filePath = filePath.replaceAll(GeneralConstant.CFG, "").replaceAll(GeneralConstant.DAT, "");
|
//波形文件关联事件
|
||||||
List<String> eventList = correlateEvents(fileInfoDto, filePath, fileName);
|
filePath = filePath.replaceAll(GeneralConstant.CFG, "").replaceAll(GeneralConstant.DAT, "");
|
||||||
//波形文件解析成图片
|
List<String> eventList = correlateEvents(fileInfoDto, filePath, fileName);
|
||||||
if (CollectionUtil.isNotEmpty(eventList) && devModel) {
|
if (CollectionUtil.isNotEmpty(eventList) && devModel){
|
||||||
eventList.forEach(wavePicFeignClient::getWavePics);
|
eventList.forEach(item -> {
|
||||||
|
//波形文件解析成图片
|
||||||
|
wavePicFeignClient.getWavePics(item);
|
||||||
|
//同步更新r_mp_event_detail,将波形路径录入
|
||||||
|
wavePicFeignClient.updateEventById(item);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
redisUtil.delete(AppRedisKey.FILE_PART_TIME.concat(appFileMessage.getMsg().getName()));
|
redisUtil.delete(AppRedisKey.FILE_PART_TIME.concat(appFileMessage.getMsg().getName()));
|
||||||
redisUtil.delete(AppRedisKey.FILE_PART.concat(appFileMessage.getMsg().getName()));
|
redisUtil.delete(AppRedisKey.FILE_PART.concat(appFileMessage.getMsg().getName()));
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ public class SendEventUtils {
|
|||||||
eventName = epdFeignClient.findByName(eventName).getData().getShowName();
|
eventName = epdFeignClient.findByName(eventName).getData().getShowName();
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case "1":
|
case "1":
|
||||||
code = 2;
|
code = 3;
|
||||||
//设备自身事件 不推送给用户,推送给业务管理
|
//设备自身事件 不推送给用户,推送给业务管理
|
||||||
eventUser = getEventUser(devId,false);
|
eventUser = getEventUser(devId,false);
|
||||||
if (CollectionUtil.isNotEmpty(eventUser)) {
|
if (CollectionUtil.isNotEmpty(eventUser)) {
|
||||||
@@ -108,7 +108,7 @@ public class SendEventUtils {
|
|||||||
userList.add(user.getDevCode());
|
userList.add(user.getDevCode());
|
||||||
}
|
}
|
||||||
noticeUserDto.setPushClientId(userList);
|
noticeUserDto.setPushClientId(userList);
|
||||||
noticeUserDto.setTitle("设备事件");
|
noticeUserDto.setTitle("运行事件");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -132,26 +132,26 @@ public class SendEventUtils {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "3":
|
// case "3":
|
||||||
code = 1;
|
// code = 1;
|
||||||
//稳态事件
|
// //稳态事件
|
||||||
eventUser = getEventUser(devId,true);
|
// eventUser = getEventUser(devId,true);
|
||||||
if (CollectionUtil.isNotEmpty(eventUser)) {
|
// if (CollectionUtil.isNotEmpty(eventUser)) {
|
||||||
eventUser.forEach(item->{
|
// eventUser.forEach(item->{
|
||||||
CsEventUserPO csEventUser = new CsEventUserPO();
|
// CsEventUserPO csEventUser = new CsEventUserPO();
|
||||||
csEventUser.setUserId(item);
|
// csEventUser.setUserId(item);
|
||||||
csEventUser.setStatus(0);
|
// csEventUser.setStatus(0);
|
||||||
csEventUser.setEventId(id);
|
// csEventUser.setEventId(id);
|
||||||
result.add(csEventUser);
|
// result.add(csEventUser);
|
||||||
});
|
// });
|
||||||
users = getSendUser(eventUser,1);
|
// users = getSendUser(eventUser,1);
|
||||||
if (CollectionUtil.isNotEmpty(users)){
|
// if (CollectionUtil.isNotEmpty(users)){
|
||||||
devCodeList = users.stream().map(User::getDevCode).distinct().collect(Collectors.toList());
|
// devCodeList = users.stream().map(User::getDevCode).distinct().collect(Collectors.toList());
|
||||||
noticeUserDto.setPushClientId(devCodeList);
|
// noticeUserDto.setPushClientId(devCodeList);
|
||||||
noticeUserDto.setTitle("稳态事件");
|
// noticeUserDto.setTitle("稳态事件");
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
break;
|
// break;
|
||||||
default:
|
default:
|
||||||
code = 0;
|
code = 0;
|
||||||
break;
|
break;
|
||||||
@@ -161,62 +161,62 @@ public class SendEventUtils {
|
|||||||
content = devDetailDto.getEngineeringName() + "-" + devDetailDto.getProjectName() + "-" + devDetailDto.getEquipmentName() + "于" + eventTime.format(DatePattern.NORM_DATETIME_MS_FORMATTER) + "发生" + eventName;
|
content = devDetailDto.getEngineeringName() + "-" + devDetailDto.getProjectName() + "-" + devDetailDto.getEquipmentName() + "于" + eventTime.format(DatePattern.NORM_DATETIME_MS_FORMATTER) + "发生" + eventName;
|
||||||
noticeUserDto.setContent(content);
|
noticeUserDto.setContent(content);
|
||||||
payload.setType(code);
|
payload.setType(code);
|
||||||
payload.setPath("/pages/message/message?type="+payload.getType());
|
payload.setPath("/pages/index/message1?type="+payload.getType());
|
||||||
noticeUserDto.setPayload(payload);
|
|
||||||
}
|
|
||||||
//告警处理
|
|
||||||
else if (eventType == 2){
|
|
||||||
switch (type) {
|
|
||||||
case "1":
|
|
||||||
//Ⅰ级告警 不推送给用户,推送给业务管理
|
|
||||||
eventUser = getEventUser(devId,false);
|
|
||||||
if (CollectionUtil.isNotEmpty(eventUser)) {
|
|
||||||
eventUser.forEach(item->{
|
|
||||||
CsEventUserPO csEventUser = new CsEventUserPO();
|
|
||||||
csEventUser.setUserId(item);
|
|
||||||
csEventUser.setStatus(0);
|
|
||||||
csEventUser.setEventId(id);
|
|
||||||
result.add(csEventUser);
|
|
||||||
});
|
|
||||||
users = getSendUser(eventUser,3);
|
|
||||||
if (CollectionUtil.isNotEmpty(users)){
|
|
||||||
eventName = epdFeignClient.findByName(eventName).getData().getShowName();
|
|
||||||
devCodeList = users.stream().map(User::getDevCode).distinct().collect(Collectors.toList());
|
|
||||||
noticeUserDto.setPushClientId(devCodeList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "2":
|
|
||||||
eventName = epdFeignClient.findByName(eventName).getData().getShowName();
|
|
||||||
case "3":
|
|
||||||
//Ⅱ、Ⅲ级告警推送相关用户及业务管理员
|
|
||||||
eventUser = getEventUser(devId,true);
|
|
||||||
if (CollectionUtil.isNotEmpty(eventUser)) {
|
|
||||||
eventUser.forEach(item->{
|
|
||||||
CsEventUserPO csEventUser = new CsEventUserPO();
|
|
||||||
csEventUser.setUserId(item);
|
|
||||||
csEventUser.setStatus(0);
|
|
||||||
csEventUser.setEventId(id);
|
|
||||||
result.add(csEventUser);
|
|
||||||
});
|
|
||||||
users = getSendUser(eventUser,3);
|
|
||||||
if (CollectionUtil.isNotEmpty(users)){
|
|
||||||
devCodeList = users.stream().map(User::getDevCode).distinct().collect(Collectors.toList());
|
|
||||||
noticeUserDto.setPushClientId(devCodeList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
noticeUserDto.setTitle("告警事件");
|
|
||||||
DevDetailDTO devDetailDto = csLedgerFeignclient.queryDevDetail(devId).getData();
|
|
||||||
content = devDetailDto.getEngineeringName() + "-" + devDetailDto.getProjectName() + "-" + devDetailDto.getEquipmentName() + "于" + eventTime.format(DatePattern.NORM_DATETIME_MS_FORMATTER) + "发生告警,告警信息:" + eventName;
|
|
||||||
noticeUserDto.setContent(content);
|
|
||||||
payload.setType(3);
|
|
||||||
payload.setPath("/pages/message/message?type="+payload.getType());
|
|
||||||
noticeUserDto.setPayload(payload);
|
noticeUserDto.setPayload(payload);
|
||||||
}
|
}
|
||||||
|
// //告警处理
|
||||||
|
// else if (eventType == 2){
|
||||||
|
// switch (type) {
|
||||||
|
// case "1":
|
||||||
|
// //Ⅰ级告警 不推送给用户,推送给业务管理
|
||||||
|
// eventUser = getEventUser(devId,false);
|
||||||
|
// if (CollectionUtil.isNotEmpty(eventUser)) {
|
||||||
|
// eventUser.forEach(item->{
|
||||||
|
// CsEventUserPO csEventUser = new CsEventUserPO();
|
||||||
|
// csEventUser.setUserId(item);
|
||||||
|
// csEventUser.setStatus(0);
|
||||||
|
// csEventUser.setEventId(id);
|
||||||
|
// result.add(csEventUser);
|
||||||
|
// });
|
||||||
|
// users = getSendUser(eventUser,3);
|
||||||
|
// if (CollectionUtil.isNotEmpty(users)){
|
||||||
|
// eventName = epdFeignClient.findByName(eventName).getData().getShowName();
|
||||||
|
// devCodeList = users.stream().map(User::getDevCode).distinct().collect(Collectors.toList());
|
||||||
|
// noticeUserDto.setPushClientId(devCodeList);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// break;
|
||||||
|
// case "2":
|
||||||
|
// eventName = epdFeignClient.findByName(eventName).getData().getShowName();
|
||||||
|
// case "3":
|
||||||
|
// //Ⅱ、Ⅲ级告警推送相关用户及业务管理员
|
||||||
|
// eventUser = getEventUser(devId,true);
|
||||||
|
// if (CollectionUtil.isNotEmpty(eventUser)) {
|
||||||
|
// eventUser.forEach(item->{
|
||||||
|
// CsEventUserPO csEventUser = new CsEventUserPO();
|
||||||
|
// csEventUser.setUserId(item);
|
||||||
|
// csEventUser.setStatus(0);
|
||||||
|
// csEventUser.setEventId(id);
|
||||||
|
// result.add(csEventUser);
|
||||||
|
// });
|
||||||
|
// users = getSendUser(eventUser,3);
|
||||||
|
// if (CollectionUtil.isNotEmpty(users)){
|
||||||
|
// devCodeList = users.stream().map(User::getDevCode).distinct().collect(Collectors.toList());
|
||||||
|
// noticeUserDto.setPushClientId(devCodeList);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// break;
|
||||||
|
// default:
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// noticeUserDto.setTitle("告警事件");
|
||||||
|
// DevDetailDTO devDetailDto = csLedgerFeignclient.queryDevDetail(devId).getData();
|
||||||
|
// content = devDetailDto.getEngineeringName() + "-" + devDetailDto.getProjectName() + "-" + devDetailDto.getEquipmentName() + "于" + eventTime.format(DatePattern.NORM_DATETIME_MS_FORMATTER) + "发生告警,告警信息:" + eventName;
|
||||||
|
// noticeUserDto.setContent(content);
|
||||||
|
// payload.setType(3);
|
||||||
|
// payload.setPath("/pages/message/message?type="+payload.getType());
|
||||||
|
// noticeUserDto.setPayload(payload);
|
||||||
|
// }
|
||||||
if (CollectionUtil.isNotEmpty(noticeUserDto.getPushClientId())) {
|
if (CollectionUtil.isNotEmpty(noticeUserDto.getPushClientId())) {
|
||||||
List<String> filteredList = noticeUserDto.getPushClientId().stream()
|
List<String> filteredList = noticeUserDto.getPushClientId().stream()
|
||||||
.filter(Objects::nonNull)
|
.filter(Objects::nonNull)
|
||||||
@@ -260,6 +260,9 @@ public class SendEventUtils {
|
|||||||
List<String> list = csDeviceUserFeignClient.findUserById(devId).getData();
|
List<String> list = csDeviceUserFeignClient.findUserById(devId).getData();
|
||||||
adminList.addAll(list);
|
adminList.addAll(list);
|
||||||
}
|
}
|
||||||
|
if (CollectionUtil.isNotEmpty(adminList)) {
|
||||||
|
adminList = adminList.stream().distinct().collect(Collectors.toList());
|
||||||
|
}
|
||||||
return adminList;
|
return adminList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ public class CldDevRunFlagConsumer extends EnhanceConsumerMessageHandler<CldDevi
|
|||||||
protected void handleMessage(CldDeviceRunFlagMessage cldDeviceRunFlagMessage) {
|
protected void handleMessage(CldDeviceRunFlagMessage cldDeviceRunFlagMessage) {
|
||||||
log.info("分发至翻转设备状态");
|
log.info("分发至翻转设备状态");
|
||||||
int status = Objects.equals(cldDeviceRunFlagMessage.getStatus(),"0") ? 1 : 2;
|
int status = Objects.equals(cldDeviceRunFlagMessage.getStatus(),"0") ? 1 : 2;
|
||||||
equipmentFeignClient.flipCldDevStatus(cldDeviceRunFlagMessage.getId(), status);
|
equipmentFeignClient.flipCldDevStatus(cldDeviceRunFlagMessage.getDate(),cldDeviceRunFlagMessage.getId(), status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user