暂降原因

This commit is contained in:
hzj
2025-08-01 10:48:04 +08:00
parent 7c1b07feba
commit 0a6b4e9aca
8 changed files with 165 additions and 13 deletions

View File

@@ -0,0 +1,24 @@
package com.njcn.advance.api;
import com.njcn.advance.api.fallback.EventCauseFeignClientFallbackFactory;
import com.njcn.advance.pojo.dto.EventAnalysisDTO;
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.RequestBody;
/**
* Description:
* Date: 2025/08/01 上午 8:54【需求编号】
*
* @author clam
* @version V1.0.0
*/
@FeignClient(value = ServerInfo.ADVANCE_BOOT,path = "/eventAdvance",
fallbackFactory = EventCauseFeignClientFallbackFactory.class,
contextId = "eventAdvance" )
public interface EventCauseFeignClient {
@PostMapping(value = "/analysisCauseAndType")
HttpResult<EventAnalysisDTO> analysisCauseAndType(@RequestBody EventAnalysisDTO eventAnalysis);
}

View File

@@ -0,0 +1,41 @@
package com.njcn.advance.api.fallback;
import com.njcn.advance.api.EventCauseFeignClient;
import com.njcn.advance.api.EventWaveAnalysisFeignClient;
import com.njcn.advance.pojo.dto.EventAnalysisDTO;
import com.njcn.advance.pojo.dto.waveAnalysis.EntityAdvancedData;
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
import com.njcn.common.pojo.exception.BusinessException;
import com.njcn.common.pojo.response.HttpResult;
import com.njcn.event.utils.EventlEnumUtil;
import feign.hystrix.FallbackFactory;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
/**
* @author wr
*/
@Slf4j
@Component
public class EventCauseFeignClientFallbackFactory implements FallbackFactory<EventCauseFeignClient> {
@Override
public EventCauseFeignClient create(Throwable throwable) {
//判断抛出异常是否为解码器抛出的业务异常
Enum<?> exceptionEnum = CommonResponseEnum.SERVICE_FALLBACK;
if (throwable.getCause() instanceof BusinessException) {
BusinessException businessException = (BusinessException) throwable.getCause();
exceptionEnum = EventlEnumUtil.getExceptionEnum(businessException.getResult());
}
Enum<?> finalExceptionEnum = exceptionEnum;
return new EventCauseFeignClient() {
@Override
public HttpResult<EventAnalysisDTO> analysisCauseAndType(EventAnalysisDTO eventAnalysis) {
log.error("{}异常,降级处理,异常为:{}", "暂降原因分析", throwable.toString());
throw new BusinessException(finalExceptionEnum);
}
};
}
}

View File

@@ -0,0 +1,76 @@
package com.njcn.advance.pojo.dto;
import lombok.Data;
/**
*
* 暂降事件的高级分析,包括暂降原因和暂降类型
*
* @author hongawen
* @version 1.0
* @data 2025/7/30 10:43
*/
@Data
public class EventAnalysisDTO {
/**
* lineId
*/
private String lineId;
/**
* 监测点IP
*/
private String ip;
/**
* 事件ID
*/
private String eventId;
/**
* 文件名称
*/
private String waveName;
/**
* 暂降原因
* (0) //未知
* (1) //短路故障
* (2) //电压调节器
* (3) //感动电机
* (4) //电压跌落
*/
private Integer cause;
/**
* 可能分析失败,虽然返回的原因为未知,可能程序执行异常导致的
* 0 异常计算
* 1 正常计算
*/
private Integer causeFlag = 1;
/**
* 暂降类型
* TYPE0 = 0; // BC相间故障
* TYPE1 = 1; // C相接地故障
* TYPE2 = 2; // AC相间故障
* TYPE3 = 3; // A相接地故障
* TYPE4 = 4; // AB相间故障
* TYPE5 = 5; // B相接地故障
* TYPE6 = 6; // BC相间接地
* TYPE7 = 7; // AC相间接地
* TYPE8 = 8; // AB相间接地
* TYPE9 = 9; // 三相故障
* TYPE10 = 10; // 未知
*/
private Integer type;
/**
* 可能分析失败,虽然返回的原因为未知,可能程序执行异常导致的
* 0 异常计算
* 1 正常计算
*/
private Integer typeFlag = 1;
}