Compare commits
42 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6c34c4a968 | ||
|
|
186d701dcb | ||
|
|
9b1b21dad5 | ||
|
|
00bda55ddd | ||
|
|
593b7e9d7b | ||
| f842886c00 | |||
|
|
af58306d96 | ||
|
|
09972e0764 | ||
|
|
7ba71562d8 | ||
|
|
71ba7fa139 | ||
|
|
48408859b1 | ||
|
|
fef01b692a | ||
|
|
55208ecf69 | ||
|
|
9a7d841d9c | ||
|
|
4ef5c982de | ||
|
|
22028fe7eb | ||
|
|
6ff3d7e336 | ||
| fe7af8a632 | |||
|
|
c67a2c8323 | ||
|
|
ce217b8b86 | ||
|
|
ebc52eb8ba | ||
|
|
0e1fb0e254 | ||
|
|
4d61cfc490 | ||
|
|
d0491b4850 | ||
|
|
610a3c1d13 | ||
|
|
ac0a9dd777 | ||
|
|
f294cb315f | ||
|
|
051e7fe14a | ||
|
|
38cbb22eff | ||
|
|
423fa581b4 | ||
|
|
279a8a6e83 | ||
|
|
a108b295d1 | ||
|
|
04bd8a7db3 | ||
|
|
d084950090 | ||
|
|
ff53c91279 | ||
|
|
751dc56568 | ||
| 7f42a21536 | |||
|
|
8ca804283a | ||
|
|
c43c5b4342 | ||
|
|
03ec551f71 | ||
|
|
0ddf98e1af | ||
|
|
1c014a75a7 |
@@ -1,20 +1,13 @@
|
|||||||
package com.njcn.gather.detection.controller;
|
package com.njcn.gather.detection.controller;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
|
||||||
import com.njcn.common.pojo.annotation.OperateInfo;
|
import com.njcn.common.pojo.annotation.OperateInfo;
|
||||||
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
||||||
import com.njcn.common.pojo.response.HttpResult;
|
import com.njcn.common.pojo.response.HttpResult;
|
||||||
import com.njcn.gather.detection.handler.SocketDevResponseService;
|
import com.njcn.gather.detection.handler.SocketDevResponseService;
|
||||||
import com.njcn.gather.detection.pojo.enums.SourceOperateCodeEnum;
|
|
||||||
import com.njcn.gather.detection.pojo.param.PreDetectionParam;
|
import com.njcn.gather.detection.pojo.param.PreDetectionParam;
|
||||||
import com.njcn.gather.detection.pojo.param.SimulateDetectionParam;
|
import com.njcn.gather.detection.pojo.param.SimulateDetectionParam;
|
||||||
import com.njcn.gather.detection.pojo.vo.SocketMsg;
|
|
||||||
import com.njcn.gather.detection.service.PreDetectionService;
|
import com.njcn.gather.detection.service.PreDetectionService;
|
||||||
import com.njcn.gather.detection.service.impl.DetectionServiceImpl;
|
import com.njcn.gather.detection.service.impl.DetectionServiceImpl;
|
||||||
import com.njcn.gather.detection.util.socket.XiNumberManager;
|
|
||||||
import com.njcn.gather.detection.util.socket.cilent.NettyClient;
|
|
||||||
import com.njcn.gather.detection.util.socket.cilent.NettyDevClientHandler;
|
|
||||||
import com.njcn.gather.device.pojo.vo.PreDetection;
|
|
||||||
import com.njcn.gather.device.service.IPqDevService;
|
import com.njcn.gather.device.service.IPqDevService;
|
||||||
import com.njcn.gather.script.service.IPqScriptDtlsService;
|
import com.njcn.gather.script.service.IPqScriptDtlsService;
|
||||||
import com.njcn.web.controller.BaseController;
|
import com.njcn.web.controller.BaseController;
|
||||||
@@ -27,10 +20,6 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
import org.springframework.validation.annotation.Validated;
|
import org.springframework.validation.annotation.Validated;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
|
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@Api(tags = "预检测")
|
@Api(tags = "预检测")
|
||||||
@@ -63,6 +52,12 @@ public class PreDetectionController extends BaseController {
|
|||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 程控源-源通讯校验
|
||||||
|
*
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
@PostMapping("/ytxCheckSimulate")
|
@PostMapping("/ytxCheckSimulate")
|
||||||
@OperateInfo
|
@OperateInfo
|
||||||
@ApiOperation("源通讯校验")
|
@ApiOperation("源通讯校验")
|
||||||
@@ -74,7 +69,7 @@ public class PreDetectionController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 模拟检测
|
* 程控源检测
|
||||||
*/
|
*/
|
||||||
@PostMapping("/startSimulateTest")
|
@PostMapping("/startSimulateTest")
|
||||||
@OperateInfo
|
@OperateInfo
|
||||||
@@ -87,7 +82,7 @@ public class PreDetectionController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 关闭检测
|
* 关闭检测-程控源
|
||||||
*/
|
*/
|
||||||
@PostMapping("/closeSimulateTest")
|
@PostMapping("/closeSimulateTest")
|
||||||
@OperateInfo
|
@OperateInfo
|
||||||
@@ -139,37 +134,4 @@ public class PreDetectionController extends BaseController {
|
|||||||
preDetectionService.restartTemTest(param);
|
preDetectionService.restartTemTest(param);
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 测试
|
|
||||||
*/
|
|
||||||
@PostMapping("/startTest")
|
|
||||||
@OperateInfo
|
|
||||||
@ApiOperation("测试")
|
|
||||||
@ApiImplicitParam(name = "param", value = "查询参数", required = true)
|
|
||||||
public HttpResult<String> startTest(@RequestBody PreDetectionParam param) {
|
|
||||||
String methodDescribe = getMethodDescribe("startTest");
|
|
||||||
//preDetectionService.startTest(param);
|
|
||||||
|
|
||||||
|
|
||||||
List<PreDetection> pqDevList = iPqDevService.getDevInfo(param.getDevIds());
|
|
||||||
XiNumberManager.xiDevList = pqDevList;
|
|
||||||
String s = param.getUserPageId() + "_Dev";
|
|
||||||
SocketMsg<String> socketMsg = new SocketMsg<>();
|
|
||||||
socketMsg.setRequestId(SourceOperateCodeEnum.Coefficient_Check.getValue());
|
|
||||||
socketMsg.setOperateCode(SourceOperateCodeEnum.DATA_CHNFACTOR$01.getValue());
|
|
||||||
PreDetection preDetection = pqDevList.get(0);
|
|
||||||
Map<String, Object> map = new HashMap<>();
|
|
||||||
map.put("devIP", preDetection.getDevIP());
|
|
||||||
map.put("chnNum", preDetection.getDevChns());
|
|
||||||
socketMsg.setData(JSON.toJSONString(map));
|
|
||||||
|
|
||||||
|
|
||||||
NettyClient.socketClient("192.168.1.138", 61000, param, JSON.toJSONString(socketMsg), new NettyDevClientHandler(param, socketDevResponseService));
|
|
||||||
|
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
|||||||
import com.njcn.gather.detection.pojo.dto.DevXiNumData;
|
import com.njcn.gather.detection.pojo.dto.DevXiNumData;
|
||||||
import com.njcn.gather.detection.pojo.enums.SourceOperateCodeEnum;
|
import com.njcn.gather.detection.pojo.enums.SourceOperateCodeEnum;
|
||||||
import com.njcn.gather.detection.pojo.enums.SourceResponseCodeEnum;
|
import com.njcn.gather.detection.pojo.enums.SourceResponseCodeEnum;
|
||||||
import com.njcn.gather.detection.pojo.param.DevPhaseSequenceParam;
|
|
||||||
import com.njcn.gather.detection.pojo.param.PreDetectionParam;
|
import com.njcn.gather.detection.pojo.param.PreDetectionParam;
|
||||||
import com.njcn.gather.detection.pojo.po.DevData;
|
import com.njcn.gather.detection.pojo.po.DevData;
|
||||||
import com.njcn.gather.detection.pojo.po.SourceCompareDev;
|
import com.njcn.gather.detection.pojo.po.SourceCompareDev;
|
||||||
@@ -30,12 +29,13 @@ import com.njcn.gather.storage.pojo.po.AdHarmonicResult;
|
|||||||
import com.njcn.gather.storage.pojo.po.AdNonHarmonicResult;
|
import com.njcn.gather.storage.pojo.po.AdNonHarmonicResult;
|
||||||
import com.njcn.gather.storage.service.AdHarmonicService;
|
import com.njcn.gather.storage.service.AdHarmonicService;
|
||||||
import com.njcn.gather.storage.service.DetectionDataDealService;
|
import com.njcn.gather.storage.service.DetectionDataDealService;
|
||||||
import com.njcn.gather.system.config.pojo.po.SysTestConfig;
|
import com.njcn.gather.system.cfg.pojo.po.SysTestConfig;
|
||||||
import com.njcn.gather.system.config.service.ISysTestConfigService;
|
import com.njcn.gather.system.cfg.service.ISysTestConfigService;
|
||||||
import com.njcn.gather.system.dictionary.pojo.enums.DictDataEnum;
|
import com.njcn.gather.system.dictionary.pojo.enums.DictDataEnum;
|
||||||
import com.njcn.gather.system.pojo.enums.DicDataEnum;
|
import com.njcn.gather.system.pojo.enums.DicDataEnum;
|
||||||
import com.njcn.gather.system.reg.service.ISysRegResService;
|
import com.njcn.gather.system.reg.service.ISysRegResService;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
@@ -82,7 +82,8 @@ public class SocketDevResponseService {
|
|||||||
private final ISysTestConfigService sysTestConfigService;
|
private final ISysTestConfigService sysTestConfigService;
|
||||||
private final AdHarmonicService adHarmonicService;
|
private final AdHarmonicService adHarmonicService;
|
||||||
private final IAdPlanService adPlanService;
|
private final IAdPlanService adPlanService;
|
||||||
|
@Value("${phaseAngle.isEnable}")
|
||||||
|
private Boolean isPhaseAngle;
|
||||||
|
|
||||||
// private final ExecutorService executorPool = Executors.newFixedThreadPool(10);
|
// private final ExecutorService executorPool = Executors.newFixedThreadPool(10);
|
||||||
|
|
||||||
@@ -92,7 +93,7 @@ public class SocketDevResponseService {
|
|||||||
*/
|
*/
|
||||||
List<DevData> devInfo = new ArrayList<>();
|
List<DevData> devInfo = new ArrayList<>();
|
||||||
|
|
||||||
Map<String, DevData> devDataMap = new HashMap<>();
|
//Map<String, DevData> devDataMap = new HashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 成功结束的测点
|
* 成功结束的测点
|
||||||
@@ -564,12 +565,12 @@ public class SocketDevResponseService {
|
|||||||
coefficientVO.setCIeData(String.valueOf(optionalIC));
|
coefficientVO.setCIeData(String.valueOf(optionalIC));
|
||||||
|
|
||||||
if (XiNumberManager.stepNumber == 0 || XiNumberManager.stepNumber == 1) {
|
if (XiNumberManager.stepNumber == 0 || XiNumberManager.stepNumber == 1) {
|
||||||
Integer aXi = (int) (devParameter.getDevVolt() * startF.getF().getUa_gain() / optionalA);
|
Integer aXi = BigDecimal.valueOf(devParameter.getDevVolt() * startF.getF().getUa_gain() / optionalA).setScale(0, RoundingMode.HALF_UP).intValue();
|
||||||
Integer bXi = (int) (devParameter.getDevVolt() * startF.getF().getUb_gain() / optionalB);
|
Integer bXi = BigDecimal.valueOf(devParameter.getDevVolt() * startF.getF().getUb_gain() / optionalB).setScale(0, RoundingMode.HALF_UP).intValue();
|
||||||
Integer cXi = (int) (devParameter.getDevVolt() * startF.getF().getUc_gain() / optionalC);
|
Integer cXi = BigDecimal.valueOf(devParameter.getDevVolt() * startF.getF().getUc_gain() / optionalC).setScale(0, RoundingMode.HALF_UP).intValue();
|
||||||
Integer aIXi = (int) (devParameter.getDevCurr() * startF.getF().getIa_gain() / optionalIA);
|
Integer aIXi = BigDecimal.valueOf(devParameter.getDevCurr() * startF.getF().getIa_gain() / optionalIA).setScale(0, RoundingMode.HALF_UP).intValue();
|
||||||
Integer bIXi = (int) (devParameter.getDevCurr() * startF.getF().getIb_gain() / optionalIB);
|
Integer bIXi = BigDecimal.valueOf(devParameter.getDevCurr() * startF.getF().getIb_gain() / optionalIB).setScale(0, RoundingMode.HALF_UP).intValue();
|
||||||
Integer cIXi = (int) (devParameter.getDevCurr() * startF.getF().getIc_gain() / optionalIC);
|
Integer cIXi = BigDecimal.valueOf(devParameter.getDevCurr() * startF.getF().getIc_gain() / optionalIC).setScale(0, RoundingMode.HALF_UP).intValue();
|
||||||
|
|
||||||
coefficientVO.setAVuXi(aXi.toString());
|
coefficientVO.setAVuXi(aXi.toString());
|
||||||
coefficientVO.setBVuXi(bXi.toString());
|
coefficientVO.setBVuXi(bXi.toString());
|
||||||
@@ -780,18 +781,20 @@ public class SocketDevResponseService {
|
|||||||
if (param.getOperateType().equals(SourceOperateCodeEnum.RE_ERROR_TEST.getValue())) {
|
if (param.getOperateType().equals(SourceOperateCodeEnum.RE_ERROR_TEST.getValue())) {
|
||||||
//不合格项复检
|
//不合格项复检
|
||||||
StorageParam storageParam = new StorageParam();
|
StorageParam storageParam = new StorageParam();
|
||||||
storageParam.setCode(Integer.valueOf(param.getCode()));
|
storageParam.setCode(param.getCode());
|
||||||
storageParam.setScriptId(param.getScriptId());
|
storageParam.setScriptId(param.getScriptId());
|
||||||
List<Integer> indexes = adHarmonicService.getIndex(storageParam, true);
|
List<Integer> indexes = adHarmonicService.getIndex(storageParam, true);
|
||||||
issueParam.setIndexList(indexes);
|
issueParam.setIndexList(indexes);
|
||||||
issueParam.setIsPhaseSequence(SourceOperateCodeEnum.COEFFICIENT_TEST.getValue());
|
issueParam.setIsPhaseSequence(SourceOperateCodeEnum.RE_ERROR_TEST.getValue());
|
||||||
} else {
|
} else {
|
||||||
issueParam.setIsPhaseSequence(SourceOperateCodeEnum.FORMAL_TEST.getValue());
|
issueParam.setIsPhaseSequence(SourceOperateCodeEnum.FORMAL_TEST.getValue());
|
||||||
}
|
}
|
||||||
//正式检测
|
//正式检测
|
||||||
sourceIssues = pqScriptDtlsService.listSourceIssue(issueParam);
|
sourceIssues = pqScriptDtlsService.listSourceIssue(issueParam);
|
||||||
sourceIssues = sourceIssues.stream().sorted(Comparator.comparing(SourceIssue::getIndex)).collect(Collectors.toList());
|
sourceIssues = sourceIssues.stream().sorted(Comparator.comparing(SourceIssue::getIndex)).collect(Collectors.toList());
|
||||||
|
// 存放所有检测小项
|
||||||
SocketManager.addSourceList(sourceIssues);
|
SocketManager.addSourceList(sourceIssues);
|
||||||
|
// 按照大项分组。key为大项code,value为小项个数
|
||||||
Map<String, Long> sourceIssueMap = sourceIssues.stream().collect(Collectors.groupingBy(SourceIssue::getType, Collectors.counting()));
|
Map<String, Long> sourceIssueMap = sourceIssues.stream().collect(Collectors.groupingBy(SourceIssue::getType, Collectors.counting()));
|
||||||
SocketManager.initMap(sourceIssueMap);
|
SocketManager.initMap(sourceIssueMap);
|
||||||
|
|
||||||
@@ -982,6 +985,7 @@ public class SocketDevResponseService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// key为 检测大项对应的code,value为当前大项的检测结果
|
||||||
Map<String, List<DevLineTestResult>> targetTestMap = new HashMap<>();
|
Map<String, List<DevLineTestResult>> targetTestMap = new HashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -989,7 +993,7 @@ public class SocketDevResponseService {
|
|||||||
*/
|
*/
|
||||||
public void formalDeal(PreDetectionParam param, SocketDataMsg socketDataMsg) {
|
public void formalDeal(PreDetectionParam param, SocketDataMsg socketDataMsg) {
|
||||||
String data = socketDataMsg.getData();
|
String data = socketDataMsg.getData();
|
||||||
DevData devData = JSON.parseObject(data, DevData.class);
|
DevData devData = JSON.parseObject(data, DevData.class); //DevData的id值为 设备id_通道号 这种形式
|
||||||
SourceResponseCodeEnum dictDataEnumByCode = SourceResponseCodeEnum.getDictDataEnumByCode(socketDataMsg.getCode());
|
SourceResponseCodeEnum dictDataEnumByCode = SourceResponseCodeEnum.getDictDataEnumByCode(socketDataMsg.getCode());
|
||||||
SourceIssue sourceIssue = SocketManager.getSourceList().get(0);
|
SourceIssue sourceIssue = SocketManager.getSourceList().get(0);
|
||||||
|
|
||||||
@@ -1005,13 +1009,14 @@ public class SocketDevResponseService {
|
|||||||
if (successComm.size() == FormalTestManager.monitorIdListComm.size()) {
|
if (successComm.size() == FormalTestManager.monitorIdListComm.size()) {
|
||||||
System.out.println(sourceIssue.getType() + splitTag + sourceIssue.getIndex() + "当前测试小项读取数据已经全部结束。。。。。。。。。");
|
System.out.println(sourceIssue.getType() + splitTag + sourceIssue.getIndex() + "当前测试小项读取数据已经全部结束。。。。。。。。。");
|
||||||
//修改装置为监测中
|
//修改装置为监测中
|
||||||
adPlanService.updateTestState(param.getPlanId(), param.getDevIds());
|
// adPlanService.updateTestState(param.getPlanId(), param.getDevIds());
|
||||||
//开启线程进行入库原始数据操作
|
//开启线程进行入库原始数据操作
|
||||||
baseDataInsert(FormalTestManager.realDataXiList, sourceIssue, param, SocketManager.valueTypeMap);
|
baseDataInsert(FormalTestManager.realDataXiList, sourceIssue, param, SocketManager.valueTypeMap);
|
||||||
|
|
||||||
//调用判断方法
|
//调用判断方法
|
||||||
Map<String, Integer> textResult = detectionServiceImpl.processing(FormalTestManager.realDataXiList, param, FormalTestManager.devIdMapComm, sourceIssue, dataRule);
|
Map<String, Integer> textResult = detectionServiceImpl.processing(FormalTestManager.realDataXiList, param, FormalTestManager.devIdMapComm, sourceIssue, dataRule);
|
||||||
|
|
||||||
|
System.out.println(textResult);
|
||||||
//组装实体推送给前台
|
//组装实体推送给前台
|
||||||
assWebJson(param, textResult, socketDataMsg, sourceIssue);
|
assWebJson(param, textResult, socketDataMsg, sourceIssue);
|
||||||
|
|
||||||
@@ -1026,6 +1031,7 @@ public class SocketDevResponseService {
|
|||||||
System.out.println(sourceIssue.getType() + sourceIssue.getIndex() + "当前测试大项已经全部结束》》》》》》》》");
|
System.out.println(sourceIssue.getType() + sourceIssue.getIndex() + "当前测试大项已经全部结束》》》》》》》》");
|
||||||
//当residueCount为0则认为大项中的小项已经全部跑完,开始组装信息推送给前端
|
//当residueCount为0则认为大项中的小项已经全部跑完,开始组装信息推送给前端
|
||||||
List<DevLineTestResult> resultList = new ArrayList<>();
|
List<DevLineTestResult> resultList = new ArrayList<>();
|
||||||
|
// 获取当前检测大项的所有设备的检测结果
|
||||||
List<DevLineTestResult> allDevTestList = targetTestMap.get(sourceIssue.getType());
|
List<DevLineTestResult> allDevTestList = targetTestMap.get(sourceIssue.getType());
|
||||||
Map<String, List<DevLineTestResult>> map = allDevTestList.stream().collect(Collectors.groupingBy(DevLineTestResult::getDeviceId));
|
Map<String, List<DevLineTestResult>> map = allDevTestList.stream().collect(Collectors.groupingBy(DevLineTestResult::getDeviceId));
|
||||||
map.forEach((dev, list) -> {
|
map.forEach((dev, list) -> {
|
||||||
@@ -1057,6 +1063,7 @@ public class SocketDevResponseService {
|
|||||||
List<SourceIssue> sourceIssueList = SocketManager.getSourceList();
|
List<SourceIssue> sourceIssueList = SocketManager.getSourceList();
|
||||||
if (CollUtil.isNotEmpty(sourceIssueList)) {
|
if (CollUtil.isNotEmpty(sourceIssueList)) {
|
||||||
SourceIssue sourceIssues = SocketManager.getSourceList().get(0);
|
SourceIssue sourceIssues = SocketManager.getSourceList().get(0);
|
||||||
|
// 如果上一个大项检测完成,则检测下一个大项,并向前端推送消息
|
||||||
if (residueCount == 0) {
|
if (residueCount == 0) {
|
||||||
CnSocketUtil.sendToWebSocket(param.getUserPageId(), sourceIssues.getType() + stepBegin, null, new ArrayList<>(), null);
|
CnSocketUtil.sendToWebSocket(param.getUserPageId(), sourceIssues.getType() + stepBegin, null, new ArrayList<>(), null);
|
||||||
}
|
}
|
||||||
@@ -1073,7 +1080,7 @@ public class SocketDevResponseService {
|
|||||||
checkDataParam.setIsValueTypeName(false);
|
checkDataParam.setIsValueTypeName(false);
|
||||||
List<String> valueType = iPqScriptCheckDataService.getValueType(checkDataParam);
|
List<String> valueType = iPqScriptCheckDataService.getValueType(checkDataParam);
|
||||||
|
|
||||||
iPqDevService.updateResult(param.getDevIds(), valueType, param.getCode());
|
iPqDevService.updateResult(param.getDevIds(), valueType, param.getCode(),param.getUserId());
|
||||||
CnSocketUtil.quitSend(param);
|
CnSocketUtil.quitSend(param);
|
||||||
}
|
}
|
||||||
successComm.clear();
|
successComm.clear();
|
||||||
@@ -1178,7 +1185,7 @@ public class SocketDevResponseService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 返回大项检测结果
|
* 返回大项检测结果,默认遇到 4,5时认为不参与计算
|
||||||
*/
|
*/
|
||||||
public Integer[] getMaxIntArray(List<Integer[]> arrays) {
|
public Integer[] getMaxIntArray(List<Integer[]> arrays) {
|
||||||
int length = arrays.get(0).length;
|
int length = arrays.get(0).length;
|
||||||
@@ -1187,14 +1194,14 @@ public class SocketDevResponseService {
|
|||||||
int maxValue = -1;
|
int maxValue = -1;
|
||||||
for (Integer[] array : arrays) {
|
for (Integer[] array : arrays) {
|
||||||
int value = array[i];
|
int value = array[i];
|
||||||
if (value != 4) {
|
if (value != 4 && value != 5) {
|
||||||
if (value > maxValue) {
|
if (value > maxValue) {
|
||||||
maxValue = value;
|
maxValue = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (maxValue == -1) {
|
if (maxValue == -1) {
|
||||||
maxArray[i] = 4;
|
maxArray[i] = arrays.get(0)[i];
|
||||||
} else {
|
} else {
|
||||||
maxArray[i] = maxValue;
|
maxArray[i] = maxValue;
|
||||||
}
|
}
|
||||||
@@ -1262,6 +1269,11 @@ public class SocketDevResponseService {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param issue
|
||||||
|
* @return key为V或I,value为对应的源下发信息
|
||||||
|
*/
|
||||||
private Map<String, String> sourceMessage(SourceIssue issue) {
|
private Map<String, String> sourceMessage(SourceIssue issue) {
|
||||||
//(Ua=59.0V,相角=0.0° Ub=59.0V,相角=0.0° Uc=59.0V,相角=0.0°)
|
//(Ua=59.0V,相角=0.0° Ub=59.0V,相角=0.0° Uc=59.0V,相角=0.0°)
|
||||||
Map<String, String> map = new HashMap<>();
|
Map<String, String> map = new HashMap<>();
|
||||||
@@ -1286,13 +1298,22 @@ public class SocketDevResponseService {
|
|||||||
List<DevData.SqlDataDTO> data,
|
List<DevData.SqlDataDTO> data,
|
||||||
List<DevData.SqlDataDTO> dataPhase) {
|
List<DevData.SqlDataDTO> dataPhase) {
|
||||||
StringBuffer str = new StringBuffer();
|
StringBuffer str = new StringBuffer();
|
||||||
if (data.size() == dataPhase.size()) {
|
if(isPhaseAngle){
|
||||||
|
if(CollUtil.isNotEmpty(data)&&CollUtil.isNotEmpty(dataPhase)){
|
||||||
|
if (data.size() == dataPhase.size()) {
|
||||||
|
DevData.SqlDataDTO.ListDTO dto = data.get(0).getList();
|
||||||
|
DevData.SqlDataDTO.ListDTO phase = dataPhase.get(0).getList();
|
||||||
|
str.append("装置(" + type + "a=" + String.format("%.4f", dto.getA()) + ",相角=" + String.format("%.4f", phase.getA()) + "° " +
|
||||||
|
type + "b=" + String.format("%.4f", dto.getB()) + ",相角=" + String.format("%.4f", phase.getB()) + "° " +
|
||||||
|
type + "c=" + String.format("%.4f", dto.getC()) + ",相角=" + String.format("%.4f", phase.getC()) + "° ");
|
||||||
|
str.append(")");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}else{
|
||||||
DevData.SqlDataDTO.ListDTO dto = data.get(0).getList();
|
DevData.SqlDataDTO.ListDTO dto = data.get(0).getList();
|
||||||
DevData.SqlDataDTO.ListDTO phase = dataPhase.get(0).getList();
|
str.append("装置(" + type + "a=" + String.format("%.4f", dto.getA()) +
|
||||||
|
type + "b=" + String.format("%.4f", dto.getB()) +
|
||||||
str.append("装置(" + type + "a=" + String.format("%.4f", dto.getA()) + ",相角=" + String.format("%.4f", phase.getA()) + "° " +
|
type + "c=" + String.format("%.4f", dto.getC()) );
|
||||||
type + "b=" + String.format("%.4f", dto.getB()) + ",相角=" + String.format("%.4f", phase.getB()) + "° " +
|
|
||||||
type + "c=" + String.format("%.4f", dto.getC()) + ",相角=" + String.format("%.4f", phase.getC()) + "° ");
|
|
||||||
str.append(")");
|
str.append(")");
|
||||||
}
|
}
|
||||||
return str.toString();
|
return str.toString();
|
||||||
@@ -1367,20 +1388,40 @@ public class SocketDevResponseService {
|
|||||||
//源信息
|
//源信息
|
||||||
Map<String, SourceIssue.ChannelListDTO> sourceMap = channelList.stream()
|
Map<String, SourceIssue.ChannelListDTO> sourceMap = channelList.stream()
|
||||||
.collect(Collectors.toMap(x -> x.getChannelType(), Function.identity()));
|
.collect(Collectors.toMap(x -> x.getChannelType(), Function.identity()));
|
||||||
Boolean a = getaBoolean(sourceMap.get(type + "a"), data.get(0).getList().getA(), dataPhase.get(0).getList().getA());
|
Boolean a = getaBoolean(sourceMap.get(type + "a"), CollUtil.isNotEmpty(data) ? data.get(0).getList().getA() : null,
|
||||||
Boolean b = getaBoolean(sourceMap.get(type + "b"), data.get(0).getList().getB(), dataPhase.get(0).getList().getB());
|
CollUtil.isNotEmpty(dataPhase) ? dataPhase.get(0).getList().getA(): null);
|
||||||
Boolean c = getaBoolean(sourceMap.get(type + "c"), data.get(0).getList().getC(), dataPhase.get(0).getList().getC());
|
Boolean b = getaBoolean(sourceMap.get(type + "b"), CollUtil.isNotEmpty(data) ? data.get(0).getList().getB(): null,
|
||||||
|
CollUtil.isNotEmpty(dataPhase) ? dataPhase.get(0).getList().getB(): null);
|
||||||
|
Boolean c = getaBoolean(sourceMap.get(type + "c"), CollUtil.isNotEmpty(data) ? data.get(0).getList().getC(): null,
|
||||||
|
CollUtil.isNotEmpty(dataPhase) ? dataPhase.get(0).getList().getC(): null);
|
||||||
compareDev.setIsQualified(a && b && c);
|
compareDev.setIsQualified(a && b && c);
|
||||||
compareDev.setDesc(name + (compareDev.getIsQualified() ? "合格->" : "不合格->") + stepTag + desc + stepTag + devMessage(type, data, dataPhase));
|
compareDev.setDesc(name + (compareDev.getIsQualified() ? "合格->" : "不合格->") + stepTag + desc + stepTag + devMessage(type, data, dataPhase));
|
||||||
return compareDev;
|
return compareDev;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Boolean getaBoolean(SourceIssue.ChannelListDTO channelListDTO, Double devData, Double devPhase) {
|
/**
|
||||||
return NumberUtil.isIn(BigDecimal.valueOf(devData),
|
* 相须校验-从幅值、相角两个维度判断是否合格
|
||||||
BigDecimal.valueOf(channelListDTO.getFAmp() * 0.95),
|
* @param channelListDTO
|
||||||
BigDecimal.valueOf(channelListDTO.getFAmp() * 1.05))
|
* @param devData
|
||||||
&&
|
* @param devPhase
|
||||||
phaseBoolean(channelListDTO, devPhase);
|
* @return
|
||||||
|
*/
|
||||||
|
private Boolean getaBoolean(SourceIssue.ChannelListDTO channelListDTO, Double devData, Double devPhase) {
|
||||||
|
Boolean isDev = false;
|
||||||
|
Boolean isPhase = false;
|
||||||
|
if(ObjectUtil.isNotNull(devData)){
|
||||||
|
isDev= NumberUtil.isIn(BigDecimal.valueOf(devData),
|
||||||
|
BigDecimal.valueOf(channelListDTO.getFAmp() * 0.95),
|
||||||
|
BigDecimal.valueOf(channelListDTO.getFAmp() * 1.05));
|
||||||
|
}
|
||||||
|
if(isPhaseAngle){
|
||||||
|
if(ObjectUtil.isNotNull(devPhase)){
|
||||||
|
isPhase = phaseBoolean(channelListDTO, devPhase);
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
isPhase=true;
|
||||||
|
}
|
||||||
|
return isDev && isPhase;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1392,7 +1433,7 @@ public class SocketDevResponseService {
|
|||||||
* @param devPhase 装置返回角度
|
* @param devPhase 装置返回角度
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
private static Boolean phaseBoolean(SourceIssue.ChannelListDTO channelListDTO, Double devPhase) {
|
private Boolean phaseBoolean(SourceIssue.ChannelListDTO channelListDTO, Double devPhase) {
|
||||||
Double phase = devPhase;
|
Double phase = devPhase;
|
||||||
if (devPhase < -180) {
|
if (devPhase < -180) {
|
||||||
phase = devPhase + 360;
|
phase = devPhase + 360;
|
||||||
@@ -1441,7 +1482,7 @@ public class SocketDevResponseService {
|
|||||||
|
|
||||||
//初始化相序集合
|
//初始化相序集合
|
||||||
this.devInfo.clear();
|
this.devInfo.clear();
|
||||||
this.devDataMap.clear();
|
//this.devDataMap.clear(); //好像没有用到
|
||||||
FormalTestManager.realDataXiList.clear();
|
FormalTestManager.realDataXiList.clear();
|
||||||
this.targetTestMap.clear();
|
this.targetTestMap.clear();
|
||||||
|
|
||||||
@@ -1604,8 +1645,8 @@ public class SocketDevResponseService {
|
|||||||
List<String> c = tem.getC();
|
List<String> c = tem.getC();
|
||||||
|
|
||||||
Class<AdHarmonicResult> example = (Class<AdHarmonicResult>) adHarmonicResult.getClass();
|
Class<AdHarmonicResult> example = (Class<AdHarmonicResult>) adHarmonicResult.getClass();
|
||||||
if(DicDataEnum.HSV.getCode().equals(sourceIssue.getType()) || DicDataEnum.HSI.getCode().equals(sourceIssue.getType())){
|
if (DicDataEnum.HSV.getCode().equals(sourceIssue.getType()) || DicDataEnum.HSI.getCode().equals(sourceIssue.getType())) {
|
||||||
for (int i = 1; i < a.size()+1; i++) {
|
for (int i = 1; i < a.size() + 1; i++) {
|
||||||
try {
|
try {
|
||||||
Field aField = example.getDeclaredField("aValue" + i);
|
Field aField = example.getDeclaredField("aValue" + i);
|
||||||
Field bField = example.getDeclaredField("bValue" + i);
|
Field bField = example.getDeclaredField("bValue" + i);
|
||||||
@@ -1621,8 +1662,8 @@ public class SocketDevResponseService {
|
|||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}else{
|
} else {
|
||||||
for (int i = 2; i <= a.size()+1; i++) {
|
for (int i = 2; i <= a.size() + 1; i++) {
|
||||||
try {
|
try {
|
||||||
Field aField = example.getDeclaredField("aValue" + i);
|
Field aField = example.getDeclaredField("aValue" + i);
|
||||||
Field bField = example.getDeclaredField("bValue" + i);
|
Field bField = example.getDeclaredField("bValue" + i);
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ public class SocketSourceResponseService {
|
|||||||
if (ObjectUtil.isNotNull(param.getPlanId())) {
|
if (ObjectUtil.isNotNull(param.getPlanId())) {
|
||||||
detectionDev(param, socketDataMsg);
|
detectionDev(param, socketDataMsg);
|
||||||
} else {
|
} else {
|
||||||
|
// 程控源-源通信校验
|
||||||
handleYtxjySimulate(param, socketDataMsg);
|
handleYtxjySimulate(param, socketDataMsg);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -351,7 +352,7 @@ public class SocketSourceResponseService {
|
|||||||
|
|
||||||
String s = param.getUserPageId() + DEV;
|
String s = param.getUserPageId() + DEV;
|
||||||
SourceIssue sourceIssue = SocketManager.getSourceList().get(0);
|
SourceIssue sourceIssue = SocketManager.getSourceList().get(0);
|
||||||
List<String> comm = sourceIssue.getDevValueTypeList();
|
List<String> comm = sourceIssue.getDevValueTypeList(); //形如:类型&小项code这种形式。例如:real$VRMS、real$IRMS
|
||||||
System.out.println("向装置下发的参数>>>>>>>>" + comm);
|
System.out.println("向装置下发的参数>>>>>>>>" + comm);
|
||||||
socketMsg.setRequestId(SourceOperateCodeEnum.FORMAL_REAL.getValue() + stepTag + sourceIssue.getType());
|
socketMsg.setRequestId(SourceOperateCodeEnum.FORMAL_REAL.getValue() + stepTag + sourceIssue.getType());
|
||||||
int ignoreCount;
|
int ignoreCount;
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ public enum DetectionCodeEnum {
|
|||||||
I2_50("I2-50", "谐波电流"),
|
I2_50("I2-50", "谐波电流"),
|
||||||
P2_50("P2-50", "谐波有功功率"),
|
P2_50("P2-50", "谐波有功功率"),
|
||||||
SV_1_49("SV_1-49", "间谐波电压"),
|
SV_1_49("SV_1-49", "间谐波电压"),
|
||||||
SI_1_49("SI_1-49", "间谐波电压"),
|
SI_1_49("SI_1-49", "间谐波电流"),
|
||||||
MAG("MAG", "电压幅值"),
|
MAG("MAG", "电压幅值"),
|
||||||
DUR("DUR", "持续时间"),
|
DUR("DUR", "持续时间"),
|
||||||
IRMS("IRMS", "电流有效值"),
|
IRMS("IRMS", "电流有效值"),
|
||||||
@@ -28,6 +28,7 @@ public enum DetectionCodeEnum {
|
|||||||
V_UNBAN("V_UNBAN", "三相电压负序不平衡度"),
|
V_UNBAN("V_UNBAN", "三相电压负序不平衡度"),
|
||||||
I_UNBAN("I_UNBAN", "三相电流负序不平衡度"),
|
I_UNBAN("I_UNBAN", "三相电流负序不平衡度"),
|
||||||
PST("PST", "短时间闪变"),
|
PST("PST", "短时间闪变"),
|
||||||
|
P("P", "功率"),
|
||||||
|
|
||||||
|
|
||||||
I1("I1", "基波电流"),
|
I1("I1", "基波电流"),
|
||||||
|
|||||||
@@ -9,11 +9,15 @@ import lombok.Getter;
|
|||||||
@Getter
|
@Getter
|
||||||
public enum DetectionResponseEnum {
|
public enum DetectionResponseEnum {
|
||||||
PLAN_PATTERN_NOT("A020001", "计划模式查询为空"),
|
PLAN_PATTERN_NOT("A020001", "计划模式查询为空"),
|
||||||
|
SCRIPT_PATTERN_NOT("A020001", "检测脚本查询为空"),
|
||||||
SOURCE_INFO_NOT("A020002", "源表信息不存在"),
|
SOURCE_INFO_NOT("A020002", "源表信息不存在"),
|
||||||
PLAN_AND_SOURCE_NOT("A020003", "计划和源关系不存在"),
|
PLAN_AND_SOURCE_NOT("A020003", "计划和源关系不存在"),
|
||||||
ITEM_TEST_NOT("A020004", "检测项为空"),
|
ITEM_TEST_NOT("A020004", "检测项为空"),
|
||||||
PLAN_DEV_IP_HAS("A20005","当前计划检测装置ip重复"),
|
PLAN_DEV_IP_HAS("A20005","当前计划检测装置ip重复"),
|
||||||
SOURCE_NOT_CONNECT("A020006", "源未连接");
|
SOURCE_NOT_CONNECT("A020006", "源未连接"),
|
||||||
|
|
||||||
|
|
||||||
|
SCRIPT_CHECK_DATA_NOT_EXIST("A020040","测试脚本项暂无配置" );
|
||||||
|
|
||||||
private final String code;
|
private final String code;
|
||||||
private final String message;
|
private final String message;
|
||||||
|
|||||||
@@ -63,4 +63,6 @@ public class PreDetectionParam {
|
|||||||
private String code;
|
private String code;
|
||||||
|
|
||||||
private Boolean sendWebMsg;
|
private Boolean sendWebMsg;
|
||||||
|
|
||||||
|
private String userId;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
package com.njcn.gather.detection.pojo.param;
|
package com.njcn.gather.detection.pojo.param;
|
||||||
|
|
||||||
import com.njcn.gather.script.pojo.constant.PqScriptValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import com.njcn.gather.source.pojo.constant.PqSourceValidMessage;
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotBlank;
|
||||||
@@ -31,12 +29,12 @@ public class SimulateDetectionParam {
|
|||||||
*/
|
*/
|
||||||
private String scriptId;
|
private String scriptId;
|
||||||
|
|
||||||
@NotNull(message = PqScriptValidMessage.INDEX_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.INDEX_NOT_NULL)
|
||||||
private Integer scriptIndex;
|
private Integer scriptIndex;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 源id
|
* 源id
|
||||||
*/
|
*/
|
||||||
@NotBlank(message = PqSourceValidMessage.ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.SOURCE_ID_NOT_BLANK)
|
||||||
private String sourceId;
|
private String sourceId;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ package com.njcn.gather.detection.pojo.vo;
|
|||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author wr
|
* @author wr
|
||||||
* @description
|
* @description
|
||||||
@@ -37,4 +39,13 @@ public class DetectionData {
|
|||||||
*/
|
*/
|
||||||
private String radius;
|
private String radius;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 误差值
|
||||||
|
*/
|
||||||
|
private BigDecimal errorData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单位
|
||||||
|
*/
|
||||||
|
private String unit;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,9 +24,6 @@ public interface PreDetectionService {
|
|||||||
void coefficientCheck(PreDetectionParam param);
|
void coefficientCheck(PreDetectionParam param);
|
||||||
|
|
||||||
|
|
||||||
boolean startTest(PreDetectionParam param);
|
|
||||||
|
|
||||||
|
|
||||||
boolean temStopTest();
|
boolean temStopTest();
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -35,6 +35,9 @@ import java.util.*;
|
|||||||
import java.util.function.Function;
|
import java.util.function.Function;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import static com.njcn.gather.detection.util.socket.UnitUtil.unit;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author wr
|
* @author wr
|
||||||
* @description
|
* @description
|
||||||
@@ -63,6 +66,7 @@ public class DetectionServiceImpl {
|
|||||||
/**
|
/**
|
||||||
* 开始处理指标类型
|
* 开始处理指标类型
|
||||||
* 一共20组数据,开始处理格式
|
* 一共20组数据,开始处理格式
|
||||||
|
* 返回值:key为设备id_通道号,value为检测结果
|
||||||
*/
|
*/
|
||||||
public Map<String, Integer> processing(List<DevData> dev, PreDetectionParam detection, Map<String, String> devIdMapComm, SourceIssue issue, DictDataEnum dataRule) {
|
public Map<String, Integer> processing(List<DevData> dev, PreDetectionParam detection, Map<String, String> devIdMapComm, SourceIssue issue, DictDataEnum dataRule) {
|
||||||
Map<String, List<DevData>> devDataMap = dev.stream().collect(Collectors.groupingBy(DevData::getId));
|
Map<String, List<DevData>> devDataMap = dev.stream().collect(Collectors.groupingBy(DevData::getId));
|
||||||
@@ -226,9 +230,16 @@ public class DetectionServiceImpl {
|
|||||||
result.setScriptId(sourceIssue.getScriptId());
|
result.setScriptId(sourceIssue.getScriptId());
|
||||||
result.setSort(sourceIssue.getIndex());
|
result.setSort(sourceIssue.getIndex());
|
||||||
result.setDataType("avg");
|
result.setDataType("avg");
|
||||||
|
Integer isQualified;
|
||||||
|
String valueTypeCode;
|
||||||
List<ErrDtlsCheckDataVO> dtlsCheckData = errDtlsCheckData.stream().filter(x -> x.getValueTypeCode().equals(s.split("\\$")[1])).collect(Collectors.toList());
|
List<ErrDtlsCheckDataVO> dtlsCheckData = errDtlsCheckData.stream().filter(x -> x.getValueTypeCode().equals(s.split("\\$")[1])).collect(Collectors.toList());
|
||||||
if (CollUtil.isNotEmpty(dtlsCheckData)) {
|
if (CollUtil.isNotEmpty(dtlsCheckData)) {
|
||||||
result.setAdType(dtlsCheckData.get(0).getValueType());
|
result.setAdType(dtlsCheckData.get(0).getValueType());
|
||||||
|
isQualified = dtlsCheckData.get(0).getIsQualified();
|
||||||
|
valueTypeCode = dtlsCheckData.get(0).getValueTypeCode();
|
||||||
|
} else {
|
||||||
|
isQualified = 4;
|
||||||
|
valueTypeCode = "";
|
||||||
}
|
}
|
||||||
List<DetectionData> resultFlag = new ArrayList<>();
|
List<DetectionData> resultFlag = new ArrayList<>();
|
||||||
map.forEach((key, value) -> {
|
map.forEach((key, value) -> {
|
||||||
@@ -236,9 +247,9 @@ public class DetectionServiceImpl {
|
|||||||
if (CollUtil.isNotEmpty(checkData)) {
|
if (CollUtil.isNotEmpty(checkData)) {
|
||||||
DetectionData detectionData;
|
DetectionData detectionData;
|
||||||
if (DUR.equals(devIndex)) {
|
if (DUR.equals(devIndex)) {
|
||||||
detectionData = rangeDURComparisonList(value, new ArrayList<>(), sourceIssue.getFFreq(), checkData.get(0).getValue(), dataRule);
|
detectionData = rangeDURComparisonList(value, isQualified, valueTypeCode, new ArrayList<>(), sourceIssue.getFFreq(), checkData.get(0).getValue(), dataRule);
|
||||||
} else {
|
} else {
|
||||||
detectionData = rangeComparisonList(value, new ArrayList<>(), null, checkData.get(0).getValue(), dataRule);
|
detectionData = rangeComparisonList(value, isQualified, valueTypeCode, new ArrayList<>(), null, checkData.get(0).getValue(), dataRule);
|
||||||
}
|
}
|
||||||
if (key.equals(TYPE_T)) {
|
if (key.equals(TYPE_T)) {
|
||||||
result.setTValue(JSON.toJSONString(detectionData));
|
result.setTValue(JSON.toJSONString(detectionData));
|
||||||
@@ -302,14 +313,21 @@ public class DetectionServiceImpl {
|
|||||||
harmonicResult.setMonitorId(devID + "_" + split[1]);
|
harmonicResult.setMonitorId(devID + "_" + split[1]);
|
||||||
harmonicResult.setScriptId(sourceIssue.getScriptId());
|
harmonicResult.setScriptId(sourceIssue.getScriptId());
|
||||||
harmonicResult.setSort(sourceIssue.getIndex());
|
harmonicResult.setSort(sourceIssue.getIndex());
|
||||||
|
Integer isQualified;
|
||||||
|
String valueTypeCode;
|
||||||
List<ErrDtlsCheckDataVO> dtlsCheckData = errDtlsCheckData.stream().filter(x -> x.getValueTypeCode().equals(s.split("\\$")[1])).collect(Collectors.toList());
|
List<ErrDtlsCheckDataVO> dtlsCheckData = errDtlsCheckData.stream().filter(x -> x.getValueTypeCode().equals(s.split("\\$")[1])).collect(Collectors.toList());
|
||||||
if (CollUtil.isNotEmpty(dtlsCheckData)) {
|
if (CollUtil.isNotEmpty(dtlsCheckData)) {
|
||||||
harmonicResult.setAdType(dtlsCheckData.get(0).getValueType());
|
harmonicResult.setAdType(dtlsCheckData.get(0).getValueType());
|
||||||
|
isQualified = dtlsCheckData.get(0).getIsQualified();
|
||||||
|
valueTypeCode = dtlsCheckData.get(0).getValueTypeCode();
|
||||||
|
} else {
|
||||||
|
isQualified = 4;
|
||||||
|
valueTypeCode = "";
|
||||||
}
|
}
|
||||||
//电压下百分比给百分比直接算 电流是是下百分比给的是幅值要转换算
|
//电压下百分比给百分比直接算 电流是是下百分比给的是幅值要转换算
|
||||||
List<DetectionData> integerBooleanA = harmRangeComparison(new ArrayList<>(), type, TYPE_A, sourceIssue, dataRule, devHarmMap.get(TYPE_A), fData, num);
|
List<DetectionData> integerBooleanA = harmRangeComparison(isQualified, valueTypeCode, new ArrayList<>(), type, TYPE_A, sourceIssue, dataRule, devHarmMap.get(TYPE_A), fData, num);
|
||||||
List<DetectionData> integerBooleanB = harmRangeComparison(new ArrayList<>(), type, TYPE_B, sourceIssue, dataRule, devHarmMap.get(TYPE_B), fData, num);
|
List<DetectionData> integerBooleanB = harmRangeComparison(isQualified, valueTypeCode, new ArrayList<>(), type, TYPE_B, sourceIssue, dataRule, devHarmMap.get(TYPE_B), fData, num);
|
||||||
List<DetectionData> integerBooleanC = harmRangeComparison(new ArrayList<>(), type, TYPE_C, sourceIssue, dataRule, devHarmMap.get(TYPE_C), fData, num);
|
List<DetectionData> integerBooleanC = harmRangeComparison(isQualified, valueTypeCode, new ArrayList<>(), type, TYPE_C, sourceIssue, dataRule, devHarmMap.get(TYPE_C), fData, num);
|
||||||
harmonicResult.setDataType("avg");
|
harmonicResult.setDataType("avg");
|
||||||
reflectHarmonic("a", integerBooleanA, harmonicResult, num);
|
reflectHarmonic("a", integerBooleanA, harmonicResult, num);
|
||||||
reflectHarmonic("b", integerBooleanB, harmonicResult, num);
|
reflectHarmonic("b", integerBooleanB, harmonicResult, num);
|
||||||
@@ -355,6 +373,7 @@ public class DetectionServiceImpl {
|
|||||||
List<AdNonHarmonicResult> info = new ArrayList<>();
|
List<AdNonHarmonicResult> info = new ArrayList<>();
|
||||||
List<String> devValueTypeList = sourceIssue.getDevValueTypeList();
|
List<String> devValueTypeList = sourceIssue.getDevValueTypeList();
|
||||||
for (String s : devValueTypeList) {
|
for (String s : devValueTypeList) {
|
||||||
|
// 根据数据处理规则取值。key为相别,value为值列表
|
||||||
Map<String, List<Double>> map = devListMap(dev, dataRule, s.split("\\$")[1]);
|
Map<String, List<Double>> map = devListMap(dev, dataRule, s.split("\\$")[1]);
|
||||||
Double fData = 1.0;
|
Double fData = 1.0;
|
||||||
if (U.equals(type)) {
|
if (U.equals(type)) {
|
||||||
@@ -374,10 +393,14 @@ public class DetectionServiceImpl {
|
|||||||
result.setSort(sourceIssue.getIndex());
|
result.setSort(sourceIssue.getIndex());
|
||||||
result.setDataType("avg");
|
result.setDataType("avg");
|
||||||
List<PqErrSysDtls> pqErrSysDtls = new ArrayList<>();
|
List<PqErrSysDtls> pqErrSysDtls = new ArrayList<>();
|
||||||
|
Integer isQualified = 4;
|
||||||
|
String valueTypeCode = "";
|
||||||
if (CollUtil.isNotEmpty(errDtlsCheckData)) {
|
if (CollUtil.isNotEmpty(errDtlsCheckData)) {
|
||||||
List<ErrDtlsCheckDataVO> dtlsCheckData = errDtlsCheckData.stream().filter(x -> x.getValueTypeCode().equals(s.split("\\$")[1])).collect(Collectors.toList());
|
List<ErrDtlsCheckDataVO> dtlsCheckData = errDtlsCheckData.stream().filter(x -> x.getValueTypeCode().equals(s.split("\\$")[1])).collect(Collectors.toList());
|
||||||
if (CollUtil.isNotEmpty(dtlsCheckData)) {
|
if (CollUtil.isNotEmpty(dtlsCheckData)) {
|
||||||
result.setAdType(dtlsCheckData.get(0).getValueType());
|
result.setAdType(dtlsCheckData.get(0).getValueType());
|
||||||
|
isQualified = dtlsCheckData.get(0).getIsQualified();
|
||||||
|
valueTypeCode = dtlsCheckData.get(0).getValueTypeCode();
|
||||||
if (CollUtil.isNotEmpty(dtlsCheckData.get(0).getErrSysDtls())) {
|
if (CollUtil.isNotEmpty(dtlsCheckData.get(0).getErrSysDtls())) {
|
||||||
pqErrSysDtls = dtlsCheckData.get(0).getErrSysDtls();
|
pqErrSysDtls = dtlsCheckData.get(0).getErrSysDtls();
|
||||||
}
|
}
|
||||||
@@ -385,7 +408,7 @@ public class DetectionServiceImpl {
|
|||||||
if (map.containsKey(TYPE_T)) {
|
if (map.containsKey(TYPE_T)) {
|
||||||
List<ErrDtlsCheckDataVO> checkDataT = dtlsCheckData.stream().filter(x -> TYPE_T.equals(x.getPhase())).collect(Collectors.toList());
|
List<ErrDtlsCheckDataVO> checkDataT = dtlsCheckData.stream().filter(x -> TYPE_T.equals(x.getPhase())).collect(Collectors.toList());
|
||||||
if (CollUtil.isNotEmpty(checkDataT)) {
|
if (CollUtil.isNotEmpty(checkDataT)) {
|
||||||
DetectionData t = rangeComparisonList(map.get(TYPE_T), pqErrSysDtls, fData, checkDataT.get(0).getValue(), dataRule);
|
DetectionData t = rangeComparisonList(map.get(TYPE_T), isQualified, valueTypeCode, pqErrSysDtls, fData, checkDataT.get(0).getValue(), dataRule);
|
||||||
result.setTValue(JSON.toJSONString(t));
|
result.setTValue(JSON.toJSONString(t));
|
||||||
result.setResultFlag(t.getIsData());
|
result.setResultFlag(t.getIsData());
|
||||||
}
|
}
|
||||||
@@ -394,19 +417,19 @@ public class DetectionServiceImpl {
|
|||||||
//取出源所对应的相别信息
|
//取出源所对应的相别信息
|
||||||
List<ErrDtlsCheckDataVO> checkDataA = dtlsCheckData.stream().filter(x -> TYPE_A.equals(x.getPhase())).collect(Collectors.toList());
|
List<ErrDtlsCheckDataVO> checkDataA = dtlsCheckData.stream().filter(x -> TYPE_A.equals(x.getPhase())).collect(Collectors.toList());
|
||||||
if (CollUtil.isNotEmpty(checkDataA)) {
|
if (CollUtil.isNotEmpty(checkDataA)) {
|
||||||
DetectionData a = rangeComparisonList(map.get(TYPE_A), pqErrSysDtls, fData, checkDataA.get(0).getValue(), dataRule);
|
DetectionData a = rangeComparisonList(map.get(TYPE_A), isQualified, valueTypeCode, pqErrSysDtls, fData, checkDataA.get(0).getValue(), dataRule);
|
||||||
resultFlag.add(a);
|
resultFlag.add(a);
|
||||||
result.setAValue(JSON.toJSONString(a));
|
result.setAValue(JSON.toJSONString(a));
|
||||||
}
|
}
|
||||||
List<ErrDtlsCheckDataVO> checkDataB = dtlsCheckData.stream().filter(x -> TYPE_B.equals(x.getPhase())).collect(Collectors.toList());
|
List<ErrDtlsCheckDataVO> checkDataB = dtlsCheckData.stream().filter(x -> TYPE_B.equals(x.getPhase())).collect(Collectors.toList());
|
||||||
if (CollUtil.isNotEmpty(checkDataB)) {
|
if (CollUtil.isNotEmpty(checkDataB)) {
|
||||||
DetectionData b = rangeComparisonList(map.get(TYPE_B), pqErrSysDtls, fData, checkDataB.get(0).getValue(), dataRule);
|
DetectionData b = rangeComparisonList(map.get(TYPE_B), isQualified, valueTypeCode, pqErrSysDtls, fData, checkDataB.get(0).getValue(), dataRule);
|
||||||
resultFlag.add(b);
|
resultFlag.add(b);
|
||||||
result.setBValue(JSON.toJSONString(b));
|
result.setBValue(JSON.toJSONString(b));
|
||||||
}
|
}
|
||||||
List<ErrDtlsCheckDataVO> checkDataC = dtlsCheckData.stream().filter(x -> TYPE_C.equals(x.getPhase())).collect(Collectors.toList());
|
List<ErrDtlsCheckDataVO> checkDataC = dtlsCheckData.stream().filter(x -> TYPE_C.equals(x.getPhase())).collect(Collectors.toList());
|
||||||
if (CollUtil.isNotEmpty(checkDataC)) {
|
if (CollUtil.isNotEmpty(checkDataC)) {
|
||||||
DetectionData c = rangeComparisonList(map.get(TYPE_C), pqErrSysDtls, fData, checkDataC.get(0).getValue(), dataRule);
|
DetectionData c = rangeComparisonList(map.get(TYPE_C), isQualified, valueTypeCode, pqErrSysDtls, fData, checkDataC.get(0).getValue(), dataRule);
|
||||||
resultFlag.add(c);
|
resultFlag.add(c);
|
||||||
result.setCValue(JSON.toJSONString(c));
|
result.setCValue(JSON.toJSONString(c));
|
||||||
}
|
}
|
||||||
@@ -417,7 +440,7 @@ public class DetectionServiceImpl {
|
|||||||
}
|
}
|
||||||
if (CollUtil.isNotEmpty(info)) {
|
if (CollUtil.isNotEmpty(info)) {
|
||||||
detectionDataDealService.acceptAdNonResult(info, code);
|
detectionDataDealService.acceptAdNonResult(info, code);
|
||||||
List<Integer> resultFlag = info.stream().filter(x -> 4 != x.getResultFlag()).map(AdNonHarmonicResult::getResultFlag).distinct().collect(Collectors.toList());
|
List<Integer> resultFlag = info.stream().map(AdNonHarmonicResult::getResultFlag).distinct().collect(Collectors.toList());
|
||||||
return getInteger(resultFlag);
|
return getInteger(resultFlag);
|
||||||
}
|
}
|
||||||
return 4;
|
return 4;
|
||||||
@@ -476,23 +499,27 @@ public class DetectionServiceImpl {
|
|||||||
harmonicResult.setScriptId(sourceIssue.getScriptId());
|
harmonicResult.setScriptId(sourceIssue.getScriptId());
|
||||||
harmonicResult.setSort(sourceIssue.getIndex());
|
harmonicResult.setSort(sourceIssue.getIndex());
|
||||||
List<PqErrSysDtls> pqErrSysDtls = new ArrayList<>();
|
List<PqErrSysDtls> pqErrSysDtls = new ArrayList<>();
|
||||||
|
Integer isQualified = 4;
|
||||||
|
String valueTypeCode = "";
|
||||||
if (CollUtil.isNotEmpty(errDtlsCheckData)) {
|
if (CollUtil.isNotEmpty(errDtlsCheckData)) {
|
||||||
harmonicResult.setAdType(errDtlsCheckData.get(0).getValueType());
|
harmonicResult.setAdType(errDtlsCheckData.get(0).getValueType());
|
||||||
|
isQualified = errDtlsCheckData.get(0).getIsQualified();
|
||||||
|
valueTypeCode = errDtlsCheckData.get(0).getValueTypeCode();
|
||||||
if (CollUtil.isNotEmpty(errDtlsCheckData.get(0).getErrSysDtls())) {
|
if (CollUtil.isNotEmpty(errDtlsCheckData.get(0).getErrSysDtls())) {
|
||||||
pqErrSysDtls = errDtlsCheckData.get(0).getErrSysDtls();
|
pqErrSysDtls = errDtlsCheckData.get(0).getErrSysDtls();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
List<DetectionData> integerBooleanA = harmRangeComparison(pqErrSysDtls, type, TYPE_A, sourceIssue, dataRule, devMap.get(TYPE_A), fData, num);
|
List<DetectionData> integerBooleanA = harmRangeComparison(isQualified, valueTypeCode, pqErrSysDtls, type, TYPE_A, sourceIssue, dataRule, devMap.get(TYPE_A), fData, num);
|
||||||
List<DetectionData> integerBooleanB = harmRangeComparison(pqErrSysDtls, type, TYPE_B, sourceIssue, dataRule, devMap.get(TYPE_B), fData, num);
|
List<DetectionData> integerBooleanB = harmRangeComparison(isQualified, valueTypeCode, pqErrSysDtls, type, TYPE_B, sourceIssue, dataRule, devMap.get(TYPE_B), fData, num);
|
||||||
List<DetectionData> integerBooleanC = harmRangeComparison(pqErrSysDtls, type, TYPE_C, sourceIssue, dataRule, devMap.get(TYPE_C), fData, num);
|
List<DetectionData> integerBooleanC = harmRangeComparison(isQualified, valueTypeCode, pqErrSysDtls, type, TYPE_C, sourceIssue, dataRule, devMap.get(TYPE_C), fData, num);
|
||||||
harmonicResult.setDataType("avg");
|
harmonicResult.setDataType("avg");
|
||||||
reflectHarmonic("a", integerBooleanA, harmonicResult, num);
|
reflectHarmonic("a", integerBooleanA, harmonicResult, num);
|
||||||
reflectHarmonic("b", integerBooleanB, harmonicResult, num);
|
reflectHarmonic("b", integerBooleanB, harmonicResult, num);
|
||||||
reflectHarmonic("c", integerBooleanC, harmonicResult, num);
|
reflectHarmonic("c", integerBooleanC, harmonicResult, num);
|
||||||
List<DetectionData> list = new ArrayList<>();
|
List<DetectionData> list = new ArrayList<>();
|
||||||
list.addAll(integerBooleanA.stream().distinct().collect(Collectors.toList()));
|
list.addAll(integerBooleanA.stream().filter(x -> 1 != x.getNum()).distinct().collect(Collectors.toList()));
|
||||||
list.addAll(integerBooleanB.stream().distinct().collect(Collectors.toList()));
|
list.addAll(integerBooleanB.stream().filter(x -> 1 != x.getNum()).distinct().collect(Collectors.toList()));
|
||||||
list.addAll(integerBooleanC.stream().distinct().collect(Collectors.toList()));
|
list.addAll(integerBooleanC.stream().filter(x -> 1 != x.getNum()).distinct().collect(Collectors.toList()));
|
||||||
harmonicResult.setResultFlag(setResultFlag(list));
|
harmonicResult.setResultFlag(setResultFlag(list));
|
||||||
return harmonicResult;
|
return harmonicResult;
|
||||||
}
|
}
|
||||||
@@ -537,8 +564,12 @@ public class DetectionServiceImpl {
|
|||||||
result.setScriptId(sourceIssue.getScriptId());
|
result.setScriptId(sourceIssue.getScriptId());
|
||||||
result.setSort(sourceIssue.getIndex());
|
result.setSort(sourceIssue.getIndex());
|
||||||
List<PqErrSysDtls> pqErrSysDtls = new ArrayList<>();
|
List<PqErrSysDtls> pqErrSysDtls = new ArrayList<>();
|
||||||
|
Integer isQualified = 4;
|
||||||
|
String valueTypeCode = "";
|
||||||
if (CollUtil.isNotEmpty(errDtlsCheckData)) {
|
if (CollUtil.isNotEmpty(errDtlsCheckData)) {
|
||||||
result.setAdType(errDtlsCheckData.get(0).getValueType());
|
result.setAdType(errDtlsCheckData.get(0).getValueType());
|
||||||
|
isQualified = errDtlsCheckData.get(0).getIsQualified();
|
||||||
|
valueTypeCode = errDtlsCheckData.get(0).getValueTypeCode();
|
||||||
if (CollUtil.isNotEmpty(errDtlsCheckData.get(0).getErrSysDtls())) {
|
if (CollUtil.isNotEmpty(errDtlsCheckData.get(0).getErrSysDtls())) {
|
||||||
pqErrSysDtls = errDtlsCheckData.get(0).getErrSysDtls();
|
pqErrSysDtls = errDtlsCheckData.get(0).getErrSysDtls();
|
||||||
}
|
}
|
||||||
@@ -549,19 +580,19 @@ public class DetectionServiceImpl {
|
|||||||
List<PqScriptCheckData> channelTypeAList = checkData.stream()
|
List<PqScriptCheckData> channelTypeAList = checkData.stream()
|
||||||
.filter(x -> TYPE_A.equals(x.getPhase()))
|
.filter(x -> TYPE_A.equals(x.getPhase()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
DetectionData a = rangeComparisonList(map.get(TYPE_A), pqErrSysDtls, fData, channelTypeAList.get(0).getValue(), dataRule);
|
DetectionData a = rangeComparisonList(map.get(TYPE_A), isQualified, valueTypeCode, pqErrSysDtls, fData, channelTypeAList.get(0).getValue(), dataRule);
|
||||||
result.setAValue(JSON.toJSONString(a));
|
result.setAValue(JSON.toJSONString(a));
|
||||||
|
|
||||||
List<PqScriptCheckData> channelTypeBList = checkData.stream()
|
List<PqScriptCheckData> channelTypeBList = checkData.stream()
|
||||||
.filter(x -> TYPE_B.equals(x.getPhase()))
|
.filter(x -> TYPE_B.equals(x.getPhase()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
DetectionData b = rangeComparisonList(map.get(TYPE_B), pqErrSysDtls, fData, channelTypeBList.get(0).getValue(), dataRule);
|
DetectionData b = rangeComparisonList(map.get(TYPE_B), isQualified, valueTypeCode, pqErrSysDtls, fData, channelTypeBList.get(0).getValue(), dataRule);
|
||||||
result.setBValue(JSON.toJSONString(b));
|
result.setBValue(JSON.toJSONString(b));
|
||||||
|
|
||||||
List<PqScriptCheckData> channelTypeCList = checkData.stream()
|
List<PqScriptCheckData> channelTypeCList = checkData.stream()
|
||||||
.filter(x -> TYPE_C.equals(x.getPhase()))
|
.filter(x -> TYPE_C.equals(x.getPhase()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
DetectionData c = rangeComparisonList(map.get(TYPE_C), pqErrSysDtls, fData, channelTypeCList.get(0).getValue(), dataRule);
|
DetectionData c = rangeComparisonList(map.get(TYPE_C), isQualified, valueTypeCode, pqErrSysDtls, fData, channelTypeCList.get(0).getValue(), dataRule);
|
||||||
result.setCValue(JSON.toJSONString(c));
|
result.setCValue(JSON.toJSONString(c));
|
||||||
|
|
||||||
result.setResultFlag(setResultFlag(Arrays.asList(a, b, c)));
|
result.setResultFlag(setResultFlag(Arrays.asList(a, b, c)));
|
||||||
@@ -569,7 +600,7 @@ public class DetectionServiceImpl {
|
|||||||
List<PqScriptCheckData> channelTypeBList = checkData.stream()
|
List<PqScriptCheckData> channelTypeBList = checkData.stream()
|
||||||
.filter(x -> TYPE_T.equals(x.getPhase()))
|
.filter(x -> TYPE_T.equals(x.getPhase()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
DetectionData t = rangeComparisonList(map.get(TYPE_B), pqErrSysDtls, fData, channelTypeBList.get(0).getValue(), dataRule);
|
DetectionData t = rangeComparisonList(map.get(TYPE_B), isQualified, valueTypeCode, pqErrSysDtls, fData, channelTypeBList.get(0).getValue(), dataRule);
|
||||||
result.setTValue(JSON.toJSONString(t));
|
result.setTValue(JSON.toJSONString(t));
|
||||||
result.setResultFlag(setResultFlag(Arrays.asList(t)));
|
result.setResultFlag(setResultFlag(Arrays.asList(t)));
|
||||||
}
|
}
|
||||||
@@ -608,7 +639,7 @@ public class DetectionServiceImpl {
|
|||||||
AdNonHarmonicResult magResult = voltageResult(dev.get(0).getId(), devIdMapComm, sourceIssue, dataRule, mag, magErrList, sourceIssue.getFUn(), MAG);
|
AdNonHarmonicResult magResult = voltageResult(dev.get(0).getId(), devIdMapComm, sourceIssue, dataRule, mag, magErrList, sourceIssue.getFUn(), MAG);
|
||||||
AdNonHarmonicResult durResult = voltageResult(dev.get(0).getId(), devIdMapComm, sourceIssue, dataRule, dur, durErrList, sourceIssue.getFFreq(), DUR);
|
AdNonHarmonicResult durResult = voltageResult(dev.get(0).getId(), devIdMapComm, sourceIssue, dataRule, dur, durErrList, sourceIssue.getFFreq(), DUR);
|
||||||
detectionDataDealService.acceptAdNonResult(Arrays.asList(magResult, durResult), code);
|
detectionDataDealService.acceptAdNonResult(Arrays.asList(magResult, durResult), code);
|
||||||
List<Integer> numbers = Arrays.asList(magResult.getResultFlag(), durResult.getResultFlag()).stream().filter(x -> 4 != x).distinct().collect(Collectors.toList());
|
List<Integer> numbers = Arrays.asList(magResult.getResultFlag(), durResult.getResultFlag()).stream().distinct().collect(Collectors.toList());
|
||||||
return getInteger(numbers);
|
return getInteger(numbers);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -642,8 +673,12 @@ public class DetectionServiceImpl {
|
|||||||
result.setSort(sourceIssue.getIndex());
|
result.setSort(sourceIssue.getIndex());
|
||||||
result.setDataType("avg");
|
result.setDataType("avg");
|
||||||
List<PqErrSysDtls> magErrList = new ArrayList<>();
|
List<PqErrSysDtls> magErrList = new ArrayList<>();
|
||||||
|
Integer isQualified = 4;
|
||||||
|
String valueTypeCode = "";
|
||||||
if (CollUtil.isNotEmpty(errDtlsCheckData)) {
|
if (CollUtil.isNotEmpty(errDtlsCheckData)) {
|
||||||
result.setAdType(errDtlsCheckData.get(0).getValueType());
|
result.setAdType(errDtlsCheckData.get(0).getValueType());
|
||||||
|
isQualified = errDtlsCheckData.get(0).getIsQualified();
|
||||||
|
valueTypeCode = errDtlsCheckData.get(0).getValueTypeCode();
|
||||||
if (CollUtil.isNotEmpty(errDtlsCheckData.get(0).getErrSysDtls())) {
|
if (CollUtil.isNotEmpty(errDtlsCheckData.get(0).getErrSysDtls())) {
|
||||||
magErrList = errDtlsCheckData.get(0).getErrSysDtls();
|
magErrList = errDtlsCheckData.get(0).getErrSysDtls();
|
||||||
}
|
}
|
||||||
@@ -652,57 +687,66 @@ public class DetectionServiceImpl {
|
|||||||
List<SourceIssue.ChannelListDTO> channelTypeAList = sourceIssue.getChannelList().stream()
|
List<SourceIssue.ChannelListDTO> channelTypeAList = sourceIssue.getChannelList().stream()
|
||||||
.filter(x -> ("Ua").equals(x.getChannelType()))
|
.filter(x -> ("Ua").equals(x.getChannelType()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
DetectionData a = setDetectionData(dataRule, mag, fData, dur, magErrList, channelTypeAList, TYPE_A);
|
DetectionData a = setDetectionData(isQualified, valueTypeCode, dataRule, mag, fData, dur, magErrList, channelTypeAList, TYPE_A);
|
||||||
result.setAValue(JSON.toJSONString(a));
|
result.setAValue(JSON.toJSONString(a));
|
||||||
|
|
||||||
List<SourceIssue.ChannelListDTO> channelTypeBList = sourceIssue.getChannelList().stream()
|
List<SourceIssue.ChannelListDTO> channelTypeBList = sourceIssue.getChannelList().stream()
|
||||||
.filter(x -> ("Ub").equals(x.getChannelType()))
|
.filter(x -> ("Ub").equals(x.getChannelType()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
|
|
||||||
DetectionData b = setDetectionData(dataRule, mag, fData, dur, magErrList, channelTypeBList, TYPE_B);
|
DetectionData b = setDetectionData(isQualified, valueTypeCode, dataRule, mag, fData, dur, magErrList, channelTypeBList, TYPE_B);
|
||||||
result.setBValue(JSON.toJSONString(b));
|
result.setBValue(JSON.toJSONString(b));
|
||||||
|
|
||||||
List<SourceIssue.ChannelListDTO> channelTypeCList = sourceIssue.getChannelList().stream()
|
List<SourceIssue.ChannelListDTO> channelTypeCList = sourceIssue.getChannelList().stream()
|
||||||
.filter(x -> ("Uc").equals(x.getChannelType()))
|
.filter(x -> ("Uc").equals(x.getChannelType()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
DetectionData c = setDetectionData(dataRule, mag, fData, dur, magErrList, channelTypeCList, TYPE_C);
|
DetectionData c = setDetectionData(isQualified, valueTypeCode, dataRule, mag, fData, dur, magErrList, channelTypeCList, TYPE_C);
|
||||||
result.setCValue(JSON.toJSONString(c));
|
result.setCValue(JSON.toJSONString(c));
|
||||||
|
|
||||||
result.setResultFlag(setResultFlag(Arrays.asList(a, b, c)));
|
result.setResultFlag(setResultFlag(Arrays.asList(a, b, c)));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private DetectionData setDetectionData(DictDataEnum dataRule, Map<String, List<Double>> mag, Double fData, String dur, List<PqErrSysDtls> magErrList, List<SourceIssue.ChannelListDTO> channelTypeCList, String typeC) {
|
private DetectionData setDetectionData(Integer isQualified, String valueTypeCode, DictDataEnum dataRule, Map<String, List<Double>> mag, Double fData, String dur, List<PqErrSysDtls> magErrList, List<SourceIssue.ChannelListDTO> channelTypeCList, String typeC) {
|
||||||
DetectionData c;
|
DetectionData c;
|
||||||
if (DUR.equals(dur)) {
|
if (DUR.equals(dur)) {
|
||||||
c = rangeDURComparisonList(mag.get(typeC), magErrList, fData, channelTypeCList.get(0).getDipData().getRetainTime(), dataRule);
|
c = rangeDURComparisonList(mag.get(typeC), isQualified, valueTypeCode, magErrList, fData, channelTypeCList.get(0).getDipData().getRetainTime(), dataRule);
|
||||||
} else {
|
} else {
|
||||||
List<Double> ampData = mag.get(typeC).stream()
|
List<Double> ampData = mag.get(typeC).stream()
|
||||||
.filter(x -> ObjectUtil.isNotNull(x))
|
.filter(x -> ObjectUtil.isNotNull(x))
|
||||||
.map(x -> x * channelTypeCList.get(0).getFAmp() * 0.01)
|
.map(x -> x * channelTypeCList.get(0).getFAmp() * 0.01)
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
c = rangeComparisonList(ampData, magErrList, fData, channelTypeCList.get(0).getDipData().getFTransValue(), dataRule);
|
c = rangeComparisonList(ampData, isQualified, valueTypeCode, magErrList, fData, channelTypeCList.get(0).getDipData().getFTransValue(), dataRule);
|
||||||
}
|
}
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private Integer setResultFlag(List<DetectionData> numbers) {
|
private Integer setResultFlag(List<DetectionData> numbers) {
|
||||||
List<Integer> isData = numbers.stream().filter(x -> ObjectUtil.isNotNull(x.getData())).filter(x -> 4 != x.getIsData()).map(DetectionData::getIsData).distinct().collect(Collectors.toList());
|
List<Integer> isData = numbers.stream().filter(x -> ObjectUtil.isNotNull(x.getData())).map(DetectionData::getIsData).distinct().collect(Collectors.toList());
|
||||||
return getInteger(isData);
|
return getInteger(isData);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Integer getInteger(List<Integer> isData) {
|
private static Integer getInteger(List<Integer> isData) {
|
||||||
if (CollUtil.isNotEmpty(isData)) {
|
if (CollUtil.isNotEmpty(isData)) {
|
||||||
if (isData.size() > 1) {
|
List<Integer> isQualified = isData.stream().filter(x -> 1 == x || 2 == x).collect(Collectors.toList());
|
||||||
if (isData.contains(2)) {
|
if (CollUtil.isNotEmpty(isQualified)) {
|
||||||
return 2;
|
if (isQualified.size() > 1) {
|
||||||
|
if (isQualified.contains(2)) {
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return isQualified.get(0);
|
||||||
|
} else {
|
||||||
|
if (isData.contains(4)) {
|
||||||
|
return 4;
|
||||||
|
}
|
||||||
|
if (isData.contains(5)) {
|
||||||
|
return 5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return isData.get(0);
|
|
||||||
} else {
|
|
||||||
return 4;
|
|
||||||
}
|
}
|
||||||
|
return 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -798,7 +842,9 @@ public class DetectionServiceImpl {
|
|||||||
* @param fData
|
* @param fData
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<DetectionData> harmRangeComparison(List<PqErrSysDtls> pqErrSysDtls,
|
public List<DetectionData> harmRangeComparison(Integer isQualified,
|
||||||
|
String valueTypeCode,
|
||||||
|
List<PqErrSysDtls> pqErrSysDtls,
|
||||||
String type,
|
String type,
|
||||||
String phase,
|
String phase,
|
||||||
SourceIssue sourceIssue,
|
SourceIssue sourceIssue,
|
||||||
@@ -854,9 +900,11 @@ public class DetectionServiceImpl {
|
|||||||
devMap.forEach((harm, harmDataList) -> {
|
devMap.forEach((harm, harmDataList) -> {
|
||||||
PqErrSysDtls errSysDtl = errSysDtlMap.get(harm);
|
PqErrSysDtls errSysDtl = errSysDtlMap.get(harm);
|
||||||
DetectionData data = new DetectionData();
|
DetectionData data = new DetectionData();
|
||||||
data.setIsData(4);
|
data.setIsData(isQualified);
|
||||||
data.setNum(harm);
|
data.setNum(harm);
|
||||||
data.setData(harmDataList.get(0));
|
if (CollUtil.isNotEmpty(harmDataList)) {
|
||||||
|
data.setData(harmDataList.get(0));
|
||||||
|
}
|
||||||
Double v = issueHarmMap.get(harm);
|
Double v = issueHarmMap.get(harm);
|
||||||
data.setResultData(v);
|
data.setResultData(v);
|
||||||
if (ObjectUtil.isNotNull(errSysDtl)) {
|
if (ObjectUtil.isNotNull(errSysDtl)) {
|
||||||
@@ -865,6 +913,7 @@ public class DetectionServiceImpl {
|
|||||||
NumberFormat nf = NumberFormat.getInstance();
|
NumberFormat nf = NumberFormat.getInstance();
|
||||||
nf.setMaximumFractionDigits(6);
|
nf.setMaximumFractionDigits(6);
|
||||||
nf.setGroupingUsed(false);
|
nf.setGroupingUsed(false);
|
||||||
|
data.setUnit(unit(valueTypeCode, errSysDtl.getErrorValueType()));
|
||||||
data.setRadius(nf.format(-errSys.getMaxErrorValue()) + "~" + nf.format(errSys.getMaxErrorValue()));
|
data.setRadius(nf.format(-errSys.getMaxErrorValue()) + "~" + nf.format(errSys.getMaxErrorValue()));
|
||||||
setDetection(dataRule, harmDataList, errSys, data, v);
|
setDetection(dataRule, harmDataList, errSys, data, v);
|
||||||
}
|
}
|
||||||
@@ -885,14 +934,23 @@ public class DetectionServiceImpl {
|
|||||||
* @Date: 2024/12/29 18:10
|
* @Date: 2024/12/29 18:10
|
||||||
*/
|
*/
|
||||||
private void setDetection(DictDataEnum dataRule, List<Double> harmDataList, PqErrSysDtls errSysDtl, DetectionData data, Double v) {
|
private void setDetection(DictDataEnum dataRule, List<Double> harmDataList, PqErrSysDtls errSysDtl, DetectionData data, Double v) {
|
||||||
List<Double> qualifiedList = harmDataList.stream()
|
if (CollUtil.isNotEmpty(harmDataList)) {
|
||||||
.filter(x -> v == 0 ? NumberUtil.isIn(devSubtractChannelData(x, v, errSysDtl.getErrorValueType()),
|
// 存放合格的数据
|
||||||
BigDecimal.valueOf(-errSysDtl.getMaxErrorValue()),
|
List<Double> qualifiedList = harmDataList.stream()
|
||||||
BigDecimal.valueOf(errSysDtl.getMaxErrorValue())) :
|
.filter(x -> v == 0 ? NumberUtil.isIn(devSubtractChannelData(x, v, errSysDtl.getErrorValueType()),
|
||||||
x != 0 && NumberUtil.isIn(devSubtractChannelData(x, v, errSysDtl.getErrorValueType()),
|
BigDecimal.valueOf(-errSysDtl.getMaxErrorValue()),
|
||||||
BigDecimal.valueOf(-errSysDtl.getMaxErrorValue()),
|
BigDecimal.valueOf(errSysDtl.getMaxErrorValue()))
|
||||||
BigDecimal.valueOf(errSysDtl.getMaxErrorValue()))).collect(Collectors.toList());
|
:
|
||||||
isData(dataRule, harmDataList, data, qualifiedList);
|
x != 0 && NumberUtil.isIn(devSubtractChannelData(x, v, errSysDtl.getErrorValueType()),
|
||||||
|
BigDecimal.valueOf(-errSysDtl.getMaxErrorValue()),
|
||||||
|
BigDecimal.valueOf(errSysDtl.getMaxErrorValue()))).collect(Collectors.toList());
|
||||||
|
if (CollUtil.isNotEmpty(qualifiedList)) {
|
||||||
|
data.setErrorData(devSubtractChannelData(qualifiedList.get(0), v, errSysDtl.getErrorValueType()));
|
||||||
|
} else {
|
||||||
|
data.setErrorData(devSubtractChannelData(harmDataList.get(0), v, errSysDtl.getErrorValueType()));
|
||||||
|
}
|
||||||
|
isData(dataRule, harmDataList, data, qualifiedList);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void isData(DictDataEnum dataRule, List<Double> harmDataList, DetectionData data, List<Double> qualifiedList) {
|
private void isData(DictDataEnum dataRule, List<Double> harmDataList, DetectionData data, List<Double> qualifiedList) {
|
||||||
@@ -1020,9 +1078,9 @@ public class DetectionServiceImpl {
|
|||||||
* @param dataRule 数据处理原则
|
* @param dataRule 数据处理原则
|
||||||
* @returnd
|
* @returnd
|
||||||
*/
|
*/
|
||||||
public DetectionData rangeComparisonList(List<Double> list, List<PqErrSysDtls> pqErrSysDtls, Double data, Double channelData, DictDataEnum dataRule) {
|
public DetectionData rangeComparisonList(List<Double> list, Integer isQualified, String valueTypeCode, List<PqErrSysDtls> pqErrSysDtls, Double data, Double channelData, DictDataEnum dataRule) {
|
||||||
DetectionData detectionData = new DetectionData();
|
DetectionData detectionData = new DetectionData();
|
||||||
detectionData.setIsData(4);
|
detectionData.setIsData(isQualified);
|
||||||
if (CollUtil.isNotEmpty(list)) {
|
if (CollUtil.isNotEmpty(list)) {
|
||||||
detectionData.setData(list.get(0));
|
detectionData.setData(list.get(0));
|
||||||
detectionData.setResultData(channelData);
|
detectionData.setResultData(channelData);
|
||||||
@@ -1038,6 +1096,7 @@ public class DetectionServiceImpl {
|
|||||||
NumberFormat nf = NumberFormat.getInstance();
|
NumberFormat nf = NumberFormat.getInstance();
|
||||||
nf.setMaximumFractionDigits(6);
|
nf.setMaximumFractionDigits(6);
|
||||||
nf.setGroupingUsed(false);
|
nf.setGroupingUsed(false);
|
||||||
|
detectionData.setUnit(unit(valueTypeCode, errSysDtl.getErrorValueType()));
|
||||||
errSysDtl.setMaxErrorValue(maxErrorMultiply(errSysDtl.getMaxErrorValue(), data, channelData, errSysDtl.getErrorValueType()));
|
errSysDtl.setMaxErrorValue(maxErrorMultiply(errSysDtl.getMaxErrorValue(), data, channelData, errSysDtl.getErrorValueType()));
|
||||||
detectionData.setRadius(nf.format(-errSysDtl.getMaxErrorValue()) + "~" + nf.format(errSysDtl.getMaxErrorValue()));
|
detectionData.setRadius(nf.format(-errSysDtl.getMaxErrorValue()) + "~" + nf.format(errSysDtl.getMaxErrorValue()));
|
||||||
setDetection(dataRule, list, errSysDtl, detectionData, channelData);
|
setDetection(dataRule, list, errSysDtl, detectionData, channelData);
|
||||||
@@ -1046,9 +1105,9 @@ public class DetectionServiceImpl {
|
|||||||
return detectionData;
|
return detectionData;
|
||||||
}
|
}
|
||||||
|
|
||||||
public DetectionData rangeDURComparisonList(List<Double> list, List<PqErrSysDtls> pqErrSysDtls, Double data, Double channelData, DictDataEnum dataRule) {
|
public DetectionData rangeDURComparisonList(List<Double> list, Integer isQualified, String valueTypeCode, List<PqErrSysDtls> pqErrSysDtls, Double data, Double channelData, DictDataEnum dataRule) {
|
||||||
DetectionData detectionData = new DetectionData();
|
DetectionData detectionData = new DetectionData();
|
||||||
detectionData.setIsData(4);
|
detectionData.setIsData(isQualified);
|
||||||
if (CollUtil.isNotEmpty(list)) {
|
if (CollUtil.isNotEmpty(list)) {
|
||||||
detectionData.setData(list.get(0));
|
detectionData.setData(list.get(0));
|
||||||
detectionData.setResultData(BigDecimal.valueOf(1.0 / data).doubleValue() * channelData);
|
detectionData.setResultData(BigDecimal.valueOf(1.0 / data).doubleValue() * channelData);
|
||||||
@@ -1065,6 +1124,7 @@ public class DetectionServiceImpl {
|
|||||||
NumberFormat nf = NumberFormat.getInstance();
|
NumberFormat nf = NumberFormat.getInstance();
|
||||||
nf.setMaximumFractionDigits(6);
|
nf.setMaximumFractionDigits(6);
|
||||||
nf.setGroupingUsed(false);
|
nf.setGroupingUsed(false);
|
||||||
|
detectionData.setUnit(unit(valueTypeCode, errSysDtl.getErrorValueType()));
|
||||||
detectionData.setRadius(nf.format(BigDecimal.valueOf(1.0 / data * (channelData - errSysDtl.getMaxErrorValue())))
|
detectionData.setRadius(nf.format(BigDecimal.valueOf(1.0 / data * (channelData - errSysDtl.getMaxErrorValue())))
|
||||||
+ "~" + nf.format(BigDecimal.valueOf(1.0 / data * (channelData + errSysDtl.getMaxErrorValue()))));
|
+ "~" + nf.format(BigDecimal.valueOf(1.0 / data * (channelData + errSysDtl.getMaxErrorValue()))));
|
||||||
List<Double> qualifiedList = list.stream()
|
List<Double> qualifiedList = list.stream()
|
||||||
@@ -1072,6 +1132,15 @@ public class DetectionServiceImpl {
|
|||||||
BigDecimal.valueOf(1.0 / data * (channelData - errSysDtl.getMaxErrorValue())),
|
BigDecimal.valueOf(1.0 / data * (channelData - errSysDtl.getMaxErrorValue())),
|
||||||
BigDecimal.valueOf(1.0 / data * (channelData + errSysDtl.getMaxErrorValue())))
|
BigDecimal.valueOf(1.0 / data * (channelData + errSysDtl.getMaxErrorValue())))
|
||||||
).collect(Collectors.toList());
|
).collect(Collectors.toList());
|
||||||
|
if (CollUtil.isNotEmpty(qualifiedList)) {
|
||||||
|
BigDecimal subtract = BigDecimal.valueOf(qualifiedList.get(0))
|
||||||
|
.subtract(BigDecimal.valueOf(1.0 / data * (channelData - errSysDtl.getMaxErrorValue())));
|
||||||
|
detectionData.setErrorData(subtract);
|
||||||
|
} else {
|
||||||
|
BigDecimal subtract = BigDecimal.valueOf(list.get(0))
|
||||||
|
.subtract(BigDecimal.valueOf(1.0 / data * (channelData - errSysDtl.getMaxErrorValue())));
|
||||||
|
detectionData.setErrorData(subtract);
|
||||||
|
}
|
||||||
isData(dataRule, qualifiedList, detectionData, qualifiedList);
|
isData(dataRule, qualifiedList, detectionData, qualifiedList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1128,18 +1197,19 @@ public class DetectionServiceImpl {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public BigDecimal devSubtractChannelData(Double devData, Double channelData, Integer errorValueType) {
|
public BigDecimal devSubtractChannelData(Double devData, Double channelData, Integer errorValueType) {
|
||||||
if (devData - channelData != 0) {
|
BigDecimal subtract = BigDecimal.valueOf(devData).subtract(BigDecimal.valueOf(channelData));
|
||||||
|
if (subtract.doubleValue() != 0) {
|
||||||
switch (errorValueType) {
|
switch (errorValueType) {
|
||||||
case 2:
|
case 2:
|
||||||
//下发的谐波电压幅值,返回的是谐波电压含有率,拿(含有率值*基波 - 源下发对应谐波值幅值)/下发的幅值
|
//下发的谐波电压幅值,返回的是谐波电压含有率,拿(含有率值*基波 - 源下发对应谐波值幅值)/下发的幅值
|
||||||
return BigDecimal.valueOf(devData - channelData)
|
return subtract.multiply(BigDecimal.valueOf(100))
|
||||||
.divide(BigDecimal.valueOf(channelData), 4, RoundingMode.HALF_UP);
|
.divide(BigDecimal.valueOf(channelData), 4, RoundingMode.HALF_UP);
|
||||||
case 3:
|
case 3:
|
||||||
//下发的谐波电压幅值,返回的是谐波电压含有率,拿(含有率值*基波 - 源下发对应谐波值幅值)/装置返回值
|
//下发的谐波电压幅值,返回的是谐波电压含有率,拿(含有率值*基波 - 源下发对应谐波值幅值)/装置返回值
|
||||||
return BigDecimal.valueOf(devData - channelData)
|
return subtract.multiply(BigDecimal.valueOf(100))
|
||||||
.divide(BigDecimal.valueOf(devData), 4, RoundingMode.HALF_UP);
|
.divide(BigDecimal.valueOf(devData), 4, RoundingMode.HALF_UP);
|
||||||
}
|
}
|
||||||
return BigDecimal.valueOf(devData - channelData);
|
return subtract;
|
||||||
}
|
}
|
||||||
return BigDecimal.valueOf(0);
|
return BigDecimal.valueOf(0);
|
||||||
}
|
}
|
||||||
@@ -1193,7 +1263,7 @@ public class DetectionServiceImpl {
|
|||||||
.setScale(4, RoundingMode.HALF_UP).doubleValue();
|
.setScale(4, RoundingMode.HALF_UP).doubleValue();
|
||||||
case 2:
|
case 2:
|
||||||
case 3:
|
case 3:
|
||||||
return BigDecimal.valueOf(errorValue).multiply(BigDecimal.valueOf(harmData))
|
return BigDecimal.valueOf(errorValue).multiply(BigDecimal.valueOf(100))
|
||||||
.setScale(4, RoundingMode.HALF_UP).doubleValue();
|
.setScale(4, RoundingMode.HALF_UP).doubleValue();
|
||||||
default:
|
default:
|
||||||
return errorValue;
|
return errorValue;
|
||||||
|
|||||||
@@ -162,9 +162,6 @@ public class PreDetectionServiceImpl implements PreDetectionService {
|
|||||||
param.setSourceId(sourceParam.getSourceId());
|
param.setSourceId(sourceParam.getSourceId());
|
||||||
WebServiceManager.addPreDetectionParam(param);
|
WebServiceManager.addPreDetectionParam(param);
|
||||||
if (ObjectUtil.isNotNull(sourceParam)) {
|
if (ObjectUtil.isNotNull(sourceParam)) {
|
||||||
//开始组装socket报文请求头
|
|
||||||
//socketDevResponseService.initList(param);
|
|
||||||
//socketSourceResponseService.initList(param);
|
|
||||||
SocketMsg<String> socketMsg = new SocketMsg<>();
|
SocketMsg<String> socketMsg = new SocketMsg<>();
|
||||||
socketMsg.setRequestId(SourceOperateCodeEnum.YJC_YTXJY.getValue());
|
socketMsg.setRequestId(SourceOperateCodeEnum.YJC_YTXJY.getValue());
|
||||||
socketMsg.setOperateCode(SourceOperateCodeEnum.INIT_GATHER.getValue());
|
socketMsg.setOperateCode(SourceOperateCodeEnum.INIT_GATHER.getValue());
|
||||||
@@ -175,15 +172,6 @@ public class PreDetectionServiceImpl implements PreDetectionService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean startTest(PreDetectionParam param) {
|
|
||||||
socketDevResponseService.initList(param);
|
|
||||||
NettyClient.socketClient(ip, port, param, "start\n", new NettySourceClientHandler(param, sourceResponseService));
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean temStopTest() {
|
public boolean temStopTest() {
|
||||||
FormalTestManager.stopFlag = true;
|
FormalTestManager.stopFlag = true;
|
||||||
@@ -209,7 +197,7 @@ public class PreDetectionServiceImpl implements PreDetectionService {
|
|||||||
checkDataParam.setIsValueTypeName(false);
|
checkDataParam.setIsValueTypeName(false);
|
||||||
List<String> valueType = iPqScriptCheckDataService.getValueType(checkDataParam);
|
List<String> valueType = iPqScriptCheckDataService.getValueType(checkDataParam);
|
||||||
|
|
||||||
iPqDevService.updateResult(param.getDevIds(), valueType, param.getCode());
|
iPqDevService.updateResult(param.getDevIds(), valueType, param.getCode(),param.getUserId());
|
||||||
CnSocketUtil.quitSend(param);
|
CnSocketUtil.quitSend(param);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -224,19 +212,6 @@ public class PreDetectionServiceImpl implements PreDetectionService {
|
|||||||
preDetectionParam.setSendWebMsg(true);
|
preDetectionParam.setSendWebMsg(true);
|
||||||
|
|
||||||
specialDealSimulate(preDetectionParam);
|
specialDealSimulate(preDetectionParam);
|
||||||
|
|
||||||
// String code = dictDataService.getDictDataById(param.getPattern()).getCode();
|
|
||||||
// DictDataEnum dictDataEnumByCode = DictDataEnum.getDictDataEnumByCode(code);
|
|
||||||
// switch (dictDataEnumByCode) {
|
|
||||||
// case DIGITAL:
|
|
||||||
// case SIMULATE:
|
|
||||||
// sendYtxSocketSimulate(preDetectionParam);
|
|
||||||
// break;
|
|
||||||
// case CONTRAST:
|
|
||||||
// break;
|
|
||||||
// default:
|
|
||||||
// throw new BusinessException(DetectionResponseEnum.PLAN_PATTERN_NOT);
|
|
||||||
// }
|
|
||||||
sendYtxSocketSimulate(preDetectionParam);
|
sendYtxSocketSimulate(preDetectionParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -253,9 +228,7 @@ public class PreDetectionServiceImpl implements PreDetectionService {
|
|||||||
}
|
}
|
||||||
//组装源控制脚本
|
//组装源控制脚本
|
||||||
PqScriptIssueParam issueParam = new PqScriptIssueParam();
|
PqScriptIssueParam issueParam = new PqScriptIssueParam();
|
||||||
//issueParam.setPlanId(param.getPlanId());
|
|
||||||
issueParam.setSourceId(param.getSourceId());
|
issueParam.setSourceId(param.getSourceId());
|
||||||
//issueParam.setDevIds(param.getDevIds());
|
|
||||||
issueParam.setScriptId(param.getScriptId());
|
issueParam.setScriptId(param.getScriptId());
|
||||||
issueParam.setType(1);
|
issueParam.setType(1);
|
||||||
issueParam.setIsPhaseSequence(SourceOperateCodeEnum.SIMULATE_TEST.getValue());
|
issueParam.setIsPhaseSequence(SourceOperateCodeEnum.SIMULATE_TEST.getValue());
|
||||||
@@ -263,7 +236,6 @@ public class PreDetectionServiceImpl implements PreDetectionService {
|
|||||||
List<SourceIssue> sourceIssues = pqScriptDtlsService.listSourceIssue(issueParam);
|
List<SourceIssue> sourceIssues = pqScriptDtlsService.listSourceIssue(issueParam);
|
||||||
sourceIssues = sourceIssues.stream()
|
sourceIssues = sourceIssues.stream()
|
||||||
.filter(s -> s.getIndex().equals(param.getScriptIndex()))
|
.filter(s -> s.getIndex().equals(param.getScriptIndex()))
|
||||||
.sorted(Comparator.comparing(SourceIssue::getIndex))
|
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
|
|
||||||
SourceIssue sourceIssue = sourceIssues.get(0);
|
SourceIssue sourceIssue = sourceIssues.get(0);
|
||||||
|
|||||||
@@ -1,22 +1,11 @@
|
|||||||
package com.njcn.gather.detection.util.socket;
|
package com.njcn.gather.detection.util.socket;
|
||||||
|
|
||||||
import cn.hutool.core.collection.CollUtil;
|
|
||||||
import cn.hutool.core.date.DatePattern;
|
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
import com.alibaba.fastjson.serializer.SerializerFeature;
|
import com.alibaba.fastjson.serializer.SerializerFeature;
|
||||||
import com.njcn.gather.detection.pojo.enums.DetectionCodeEnum;
|
|
||||||
import com.njcn.gather.detection.pojo.po.DevData;
|
|
||||||
import com.njcn.gather.detection.pojo.vo.SocketDataMsg;
|
import com.njcn.gather.detection.pojo.vo.SocketDataMsg;
|
||||||
import com.njcn.gather.storage.pojo.po.AdHarmonicResult;
|
|
||||||
import com.njcn.gather.storage.pojo.po.AdNonHarmonicResult;
|
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import java.time.format.DateTimeFormatter;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author wr
|
* @author wr
|
||||||
@@ -76,103 +65,4 @@ public class MsgUtil {
|
|||||||
}
|
}
|
||||||
return JSON.toJSONString(socketDataMsg);
|
return JSON.toJSONString(socketDataMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static List<DevData> toList(List<AdNonHarmonicResult> nonHarm, List<AdHarmonicResult> harm, boolean containBaseHarm) {
|
|
||||||
List<DevData> info = new ArrayList<>();
|
|
||||||
// if (CollUtil.isNotEmpty(nonHarm)) {
|
|
||||||
if (CollUtil.isNotEmpty(nonHarm)) {
|
|
||||||
Map<String, List<AdNonHarmonicResult>> noHarmMap = nonHarm.stream()
|
|
||||||
.collect(Collectors.groupingBy(x -> x.getMonitorId() + "_" + x.getTimeId().format(DateTimeFormatter.ofPattern(DatePattern.UTC_SIMPLE_MS_PATTERN)) + "_" + x.getSort()));
|
|
||||||
noHarmMap.forEach((key, value) -> {
|
|
||||||
String[] split = key.split("_");
|
|
||||||
DevData data = new DevData();
|
|
||||||
data.setTime(split[2]);
|
|
||||||
data.setId(split[0] + "_" + split[1]);
|
|
||||||
List<DevData.SqlDataDTO> sqlDataDTOS = new ArrayList<>();
|
|
||||||
DevData.SqlDataDTO sqlDataDTO;
|
|
||||||
for (AdNonHarmonicResult result : value) {
|
|
||||||
sqlDataDTO = new DevData.SqlDataDTO();
|
|
||||||
sqlDataDTO.setType(result.getDataType());
|
|
||||||
sqlDataDTO.setDesc(result.getAdType());
|
|
||||||
DevData.SqlDataDTO.ListDTO listDTO = new DevData.SqlDataDTO.ListDTO();
|
|
||||||
listDTO.setA(StrUtil.isNotBlank(result.getAValue()) ? Double.valueOf(result.getAValue()) : null);
|
|
||||||
listDTO.setB(StrUtil.isNotBlank(result.getBValue()) ? Double.valueOf(result.getBValue()) : null);
|
|
||||||
listDTO.setC(StrUtil.isNotBlank(result.getCValue()) ? Double.valueOf(result.getCValue()) : null);
|
|
||||||
listDTO.setT(StrUtil.isNotBlank(result.getTValue()) ? Double.valueOf(result.getTValue()) : null);
|
|
||||||
sqlDataDTO.setList(listDTO);
|
|
||||||
sqlDataDTOS.add(sqlDataDTO);
|
|
||||||
}
|
|
||||||
data.setSqlData(sqlDataDTOS);
|
|
||||||
info.add(data);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (CollUtil.isNotEmpty(harm)) {
|
|
||||||
Map<String, List<AdHarmonicResult>> harmMap = harm.stream()
|
|
||||||
.collect(Collectors.groupingBy(x -> x.getMonitorId() + "_" + x.getTimeId().format(DateTimeFormatter.ofPattern(DatePattern.UTC_SIMPLE_MS_PATTERN))));
|
|
||||||
harmMap.forEach((key, value) -> {
|
|
||||||
List<DevData> collect = info.stream().filter(x -> key.equals(x.getId() + "_" + x.getTime())).collect(Collectors.toList());
|
|
||||||
List<DevData.SqlDataDTO> sqlDataDTOS = new ArrayList<>();
|
|
||||||
DevData.SqlDataDTO sqlDataDTO;
|
|
||||||
List<DevData.SqlDataHarmDTO> sqlDataHarmDTOS = new ArrayList<>();
|
|
||||||
DevData.SqlDataHarmDTO dataHarmDTO;
|
|
||||||
for (AdHarmonicResult harmonicResult : value) {
|
|
||||||
if (containBaseHarm) {
|
|
||||||
sqlDataDTO = new DevData.SqlDataDTO();
|
|
||||||
sqlDataDTO = new DevData.SqlDataDTO();
|
|
||||||
sqlDataDTO.setType(harmonicResult.getDataType());
|
|
||||||
sqlDataDTO.setDesc(harmonicResult.getAdType());
|
|
||||||
DevData.SqlDataDTO.ListDTO listDTO = new DevData.SqlDataDTO.ListDTO();
|
|
||||||
listDTO.setA(StrUtil.isNotBlank(harmonicResult.getAValue1()) ? Double.valueOf(harmonicResult.getAValue1()) : null);
|
|
||||||
listDTO.setB(StrUtil.isNotBlank(harmonicResult.getBValue1()) ? Double.valueOf(harmonicResult.getBValue1()) : null);
|
|
||||||
listDTO.setC(StrUtil.isNotBlank(harmonicResult.getCValue1()) ? Double.valueOf(harmonicResult.getCValue1()) : null);
|
|
||||||
sqlDataDTO.setList(listDTO);
|
|
||||||
sqlDataDTOS.add(sqlDataDTO);
|
|
||||||
}
|
|
||||||
|
|
||||||
dataHarmDTO = new DevData.SqlDataHarmDTO();
|
|
||||||
dataHarmDTO.setType(harmonicResult.getDataType());
|
|
||||||
dataHarmDTO.setDesc(harmonicResult.getAdType());
|
|
||||||
dataHarmDTO.setNum(containBaseHarm ? 49 : 50);
|
|
||||||
DevData.SqlDataHarmDTO.ListDTO listHarmDTO = new DevData.SqlDataHarmDTO.ListDTO();
|
|
||||||
listHarmDTO.setA(reflectHarmonicValue("a", harmonicResult, containBaseHarm));
|
|
||||||
listHarmDTO.setB(reflectHarmonicValue("b", harmonicResult, containBaseHarm));
|
|
||||||
listHarmDTO.setC(reflectHarmonicValue("c", harmonicResult, containBaseHarm));
|
|
||||||
dataHarmDTO.setList(listHarmDTO);
|
|
||||||
sqlDataHarmDTOS.add(dataHarmDTO);
|
|
||||||
}
|
|
||||||
if (CollUtil.isNotEmpty(collect)) {
|
|
||||||
collect.get(0).setSqlDataHarm(sqlDataHarmDTOS);
|
|
||||||
} else {
|
|
||||||
String[] split = key.split("_");
|
|
||||||
DevData data = new DevData();
|
|
||||||
data.setTime(split[2]);
|
|
||||||
data.setId(split[0] + "_" + split[1]);
|
|
||||||
data.setSqlData(sqlDataDTOS);
|
|
||||||
data.setSqlDataHarm(sqlDataHarmDTOS);
|
|
||||||
info.add(data);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
// }
|
|
||||||
return info;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<String> reflectHarmonicValue(String phase, AdHarmonicResult adHarmonicResult, boolean notContainBaseHarm) {
|
|
||||||
List<String> info = new ArrayList<>();
|
|
||||||
for (int i = notContainBaseHarm ? 2 : 1; i <= 50; i++) {
|
|
||||||
String fieldName = phase + "Value" + i;
|
|
||||||
try {
|
|
||||||
Field idField = AdHarmonicResult.class.getDeclaredField(fieldName);
|
|
||||||
idField.setAccessible(true);
|
|
||||||
String value = idField.get(adHarmonicResult) + "";
|
|
||||||
info.add(value);
|
|
||||||
} catch (NoSuchFieldException | IllegalAccessException e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return info;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,10 @@ import java.util.concurrent.CopyOnWriteArrayList;
|
|||||||
*/
|
*/
|
||||||
public class SocketManager {
|
public class SocketManager {
|
||||||
|
|
||||||
|
// key为userId(xxx_Source、xxx_Dev),value为channel
|
||||||
private static final Map<String, Channel> socketSessions = new ConcurrentHashMap<>();
|
private static final Map<String, Channel> socketSessions = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
|
// key为userId(xxx_Source、xxx_Dev),value为group
|
||||||
private static final Map<String, NioEventLoopGroup> socketGroup = new ConcurrentHashMap<>();
|
private static final Map<String, NioEventLoopGroup> socketGroup = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
public static void addUser(String userId, Channel channel) {
|
public static void addUser(String userId, Channel channel) {
|
||||||
|
|||||||
@@ -0,0 +1,63 @@
|
|||||||
|
package com.njcn.gather.detection.util.socket;
|
||||||
|
|
||||||
|
import com.njcn.gather.detection.pojo.enums.DetectionCodeEnum;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wr
|
||||||
|
* @description
|
||||||
|
* @date 2025/3/27 14:58
|
||||||
|
*/
|
||||||
|
public class UnitUtil {
|
||||||
|
public static String unit(String code, Integer fly) {
|
||||||
|
String unit = "";
|
||||||
|
if (Arrays.asList(0, 1).contains(fly)) {
|
||||||
|
if (DetectionCodeEnum.FREQ.getCode().equals(code)) {
|
||||||
|
unit = "Hz";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.VRMS.getCode().equals(code)) {
|
||||||
|
unit = "V";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.IRMS.getCode().equals(code)) {
|
||||||
|
unit = "A";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.V2_50.getCode().equals(code) ||
|
||||||
|
DetectionCodeEnum.SV_1_49.getCode().equals(code)||
|
||||||
|
DetectionCodeEnum.V_UNBAN.getCode().equals(code) ||
|
||||||
|
DetectionCodeEnum.I_UNBAN.getCode().equals(code)
|
||||||
|
) {
|
||||||
|
unit = "%";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.I2_50.getCode().equals(code) ||
|
||||||
|
DetectionCodeEnum.SI_1_49.getCode().equals(code)
|
||||||
|
) {
|
||||||
|
unit = "A";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.P2_50.getCode().equals(code)) {
|
||||||
|
unit = "W";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.P.getCode().equals(code)) {
|
||||||
|
unit = "P";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.MAG.getCode().equals(code)) {
|
||||||
|
unit = "%";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.DUR.getCode().equals(code)) {
|
||||||
|
unit = "s";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.VA.getCode().equals(code) ||
|
||||||
|
DetectionCodeEnum.IA.getCode().equals(code)
|
||||||
|
) {
|
||||||
|
unit = "°";
|
||||||
|
}
|
||||||
|
if (DetectionCodeEnum.DELTA_V.getCode().equals(code)
|
||||||
|
) {
|
||||||
|
unit = "%";
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
unit = "%";
|
||||||
|
}
|
||||||
|
return unit;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -28,7 +28,7 @@ public class XiNumberManager {
|
|||||||
public static List<String> devXiList = new ArrayList<>();
|
public static List<String> devXiList = new ArrayList<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 最开始存储装置通道原始系数,后续存储大电压计算出来的系数
|
* 最开始存储装置通道原始系数,后续存储大电压计算出来的系数。key为装置ip
|
||||||
*/
|
*/
|
||||||
public static Map<String, DevXiNumData> devXiNumDataMap = new ConcurrentHashMap<>();
|
public static Map<String, DevXiNumData> devXiNumDataMap = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
@@ -43,6 +43,7 @@ public class XiNumberManager {
|
|||||||
public static Integer stepNumber = 0;
|
public static Integer stepNumber = 0;
|
||||||
|
|
||||||
|
|
||||||
|
// 存放大电压、小电压、大电流、小电流的数值
|
||||||
public static List<CoefficientVO.DevParameter> devParameterList = new ArrayList<>();
|
public static List<CoefficientVO.DevParameter> devParameterList = new ArrayList<>();
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,8 @@
|
|||||||
package com.njcn.gather.device.controller;
|
package com.njcn.gather.device.controller;
|
||||||
|
|
||||||
import cn.afterturn.easypoi.excel.ExcelImportUtil;
|
|
||||||
import cn.afterturn.easypoi.excel.entity.ImportParams;
|
|
||||||
import cn.afterturn.easypoi.excel.entity.result.ExcelImportResult;
|
|
||||||
import cn.hutool.core.bean.BeanUtil;
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import com.alibaba.fastjson.JSON;
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import com.njcn.common.pojo.annotation.OperateInfo;
|
import com.njcn.common.pojo.annotation.OperateInfo;
|
||||||
import com.njcn.common.pojo.constant.OperateType;
|
import com.njcn.common.pojo.constant.OperateType;
|
||||||
@@ -15,38 +11,26 @@ 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.common.pojo.response.HttpResult;
|
import com.njcn.common.pojo.response.HttpResult;
|
||||||
import com.njcn.common.utils.LogUtil;
|
import com.njcn.common.utils.LogUtil;
|
||||||
import com.njcn.gather.device.pojo.enums.DevResponseEnum;
|
|
||||||
import com.njcn.gather.device.pojo.enums.PatternEnum;
|
|
||||||
import com.njcn.gather.device.pojo.param.PqDevParam;
|
import com.njcn.gather.device.pojo.param.PqDevParam;
|
||||||
import com.njcn.gather.device.pojo.po.PqDev;
|
import com.njcn.gather.device.pojo.po.PqDev;
|
||||||
import com.njcn.gather.device.pojo.vo.CNDevExcel;
|
|
||||||
import com.njcn.gather.device.pojo.vo.PqDevExcel;
|
|
||||||
import com.njcn.gather.device.pojo.vo.PqDevVO;
|
import com.njcn.gather.device.pojo.vo.PqDevVO;
|
||||||
import com.njcn.gather.device.pojo.vo.PreDetection;
|
|
||||||
import com.njcn.gather.device.service.IPqDevService;
|
import com.njcn.gather.device.service.IPqDevService;
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictData;
|
|
||||||
import com.njcn.gather.system.dictionary.service.IDictDataService;
|
|
||||||
import com.njcn.gather.type.pojo.po.DevType;
|
import com.njcn.gather.type.pojo.po.DevType;
|
||||||
import com.njcn.gather.type.service.IDevTypeService;
|
import com.njcn.gather.type.service.IDevTypeService;
|
||||||
import com.njcn.web.controller.BaseController;
|
import com.njcn.web.controller.BaseController;
|
||||||
import com.njcn.web.utils.ExcelUtil;
|
|
||||||
import com.njcn.web.utils.FileUtil;
|
import com.njcn.web.utils.FileUtil;
|
||||||
import com.njcn.web.utils.HttpResultUtil;
|
import com.njcn.web.utils.HttpResultUtil;
|
||||||
import com.njcn.web.utils.PoiUtil;
|
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
import io.swagger.annotations.ApiImplicitParam;
|
import io.swagger.annotations.ApiImplicitParam;
|
||||||
import io.swagger.annotations.ApiImplicitParams;
|
import io.swagger.annotations.ApiImplicitParams;
|
||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.poi.ss.usermodel.Workbook;
|
|
||||||
import org.springframework.validation.annotation.Validated;
|
import org.springframework.validation.annotation.Validated;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@@ -63,24 +47,8 @@ import java.util.Map;
|
|||||||
public class PqDevController extends BaseController {
|
public class PqDevController extends BaseController {
|
||||||
|
|
||||||
private final IPqDevService pqDevService;
|
private final IPqDevService pqDevService;
|
||||||
private final IDictDataService dictDataService;
|
|
||||||
private final IDevTypeService devTypeService;
|
private final IDevTypeService devTypeService;
|
||||||
|
|
||||||
|
|
||||||
@OperateInfo
|
|
||||||
@GetMapping("/aaa")
|
|
||||||
@ApiOperation("分页查询被检设备")
|
|
||||||
@ApiImplicitParam(name = "queryParam", value = "查询参数", required = true)
|
|
||||||
public HttpResult<List<PreDetection>> aaa() {
|
|
||||||
String methodDescribe = getMethodDescribe("list");
|
|
||||||
List<PreDetection> devInfo = pqDevService.getDevInfo(Arrays.asList("578c142b7e4e4978a35bd6225aa62a23", "393504f55f1f79bce255bfc195cfdb56"));
|
|
||||||
Map<String, List<PreDetection>> map = new HashMap();
|
|
||||||
map.put("deviceList", devInfo);
|
|
||||||
String jsonString = JSON.toJSONString(map);
|
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, devInfo, methodDescribe);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@OperateInfo
|
@OperateInfo
|
||||||
@PostMapping("/list")
|
@PostMapping("/list")
|
||||||
@ApiOperation("分页查询被检设备")
|
@ApiOperation("分页查询被检设备")
|
||||||
@@ -107,14 +75,14 @@ public class PqDevController extends BaseController {
|
|||||||
@PostMapping("/add")
|
@PostMapping("/add")
|
||||||
@ApiOperation("新增被检设备")
|
@ApiOperation("新增被检设备")
|
||||||
@ApiImplicitParam(name = "pqDevParam", value = "被检设备", required = true)
|
@ApiImplicitParam(name = "pqDevParam", value = "被检设备", required = true)
|
||||||
public HttpResult<Object> add(@RequestBody @Validated PqDevParam pqDevParam) {
|
public HttpResult<Boolean> add(@RequestBody @Validated PqDevParam pqDevParam) {
|
||||||
String methodDescribe = getMethodDescribe("add");
|
String methodDescribe = getMethodDescribe("add");
|
||||||
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, pqDevParam);
|
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, pqDevParam);
|
||||||
boolean result = pqDevService.addPqDev(pqDevParam);
|
boolean result = pqDevService.addPqDev(pqDevParam);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -122,14 +90,14 @@ public class PqDevController extends BaseController {
|
|||||||
@PostMapping("/update")
|
@PostMapping("/update")
|
||||||
@ApiOperation("修改被检设备")
|
@ApiOperation("修改被检设备")
|
||||||
@ApiImplicitParam(name = "updateParam", value = "被检设备", required = true)
|
@ApiImplicitParam(name = "updateParam", value = "被检设备", required = true)
|
||||||
public HttpResult<Object> update(@RequestBody @Validated PqDevParam.UpdateParam updateParam) {
|
public HttpResult<Boolean> update(@RequestBody @Validated PqDevParam.UpdateParam updateParam) {
|
||||||
String methodDescribe = getMethodDescribe("update");
|
String methodDescribe = getMethodDescribe("update");
|
||||||
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, updateParam);
|
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, updateParam);
|
||||||
boolean result = pqDevService.updatePqDev(updateParam);
|
boolean result = pqDevService.updatePqDev(updateParam);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -137,35 +105,25 @@ public class PqDevController extends BaseController {
|
|||||||
@PostMapping("/delete")
|
@PostMapping("/delete")
|
||||||
@ApiOperation("删除被检设备")
|
@ApiOperation("删除被检设备")
|
||||||
@ApiImplicitParam(name = "ids", value = "被检设备id", required = true)
|
@ApiImplicitParam(name = "ids", value = "被检设备id", required = true)
|
||||||
public HttpResult<Object> delete(@RequestBody @Validated PqDevParam.DeleteParam param) {
|
public HttpResult<Boolean> delete(@RequestBody @Validated PqDevParam.DeleteParam param) {
|
||||||
String methodDescribe = getMethodDescribe("delete");
|
String methodDescribe = getMethodDescribe("delete");
|
||||||
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, param.getIds()));
|
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, param.getIds()));
|
||||||
boolean result = pqDevService.deletePqDev(param);
|
boolean result = pqDevService.deletePqDev(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DOWNLOAD)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DOWNLOAD)
|
||||||
@PostMapping("/export")
|
@PostMapping("/export")
|
||||||
@ApiOperation("导出被检设备数据")
|
@ApiOperation("批量导出被检设备")
|
||||||
@ApiImplicitParam(name = "queryParam", value = "查询参数", required = true)
|
@ApiImplicitParam(name = "queryParam", value = "查询参数", required = true)
|
||||||
public void export(@RequestBody @Validated PqDevParam.QueryParam queryParam) {
|
public void exportDev(@RequestBody @Validated PqDevParam.QueryParam queryParam) {
|
||||||
String methodDescribe = getMethodDescribe("export");
|
String methodDescribe = getMethodDescribe("exportDev");
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, queryParam);
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, queryParam);
|
||||||
DictData dictData = dictDataService.getDictDataById(queryParam.getPattern());
|
pqDevService.exportDev(queryParam);
|
||||||
if (ObjectUtil.isNotNull(dictData)) {
|
|
||||||
if (PatternEnum.CONTRAST.getValue().equals(dictData.getCode())) {
|
|
||||||
List<PqDevExcel.ContrastExportData> data = pqDevService.getContrastExportData(queryParam);
|
|
||||||
ExcelUtil.exportExcel("被检设备导出数据.xlsx", PqDevExcel.ContrastExportData.class, data);
|
|
||||||
} else {
|
|
||||||
List<PqDevExcel.SimulateOrDigitalExportData> data = pqDevService.getSimulateOrDigitExportData(queryParam);
|
|
||||||
ExcelUtil.exportExcel("被检设备导出数据.xlsx", PqDevExcel.SimulateOrDigitalExportData.class, data);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DOWNLOAD)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DOWNLOAD)
|
||||||
@@ -176,105 +134,20 @@ public class PqDevController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPLOAD)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPLOAD)
|
||||||
@PostMapping(value = "/importContrast")
|
@PostMapping(value = "/import")
|
||||||
@ApiOperation("批量导入被检设备数据")
|
@ApiOperation("批量导入被检设备")
|
||||||
@ApiImplicitParam(name = "file", value = "被检设备数据文件", required = true)
|
|
||||||
public HttpResult<Object> importContrastData(@RequestParam("file") MultipartFile file, HttpServletResponse response) {
|
|
||||||
String methodDescribe = getMethodDescribe("importContrastData");
|
|
||||||
LogUtil.njcnDebug(log, "{},上传文件为:{}", methodDescribe, file.getOriginalFilename());
|
|
||||||
ImportParams params = new ImportParams();
|
|
||||||
params.setHeadRows(2);
|
|
||||||
params.setNeedVerify(true);
|
|
||||||
params.setStartSheetIndex(0);
|
|
||||||
params.setSheetNum(1);
|
|
||||||
try {
|
|
||||||
ExcelImportResult<PqDevExcel.ContrastImportData> excelImportResult = ExcelImportUtil.importExcelMore(file.getInputStream(), PqDevExcel.ContrastImportData.class, params);
|
|
||||||
//如果存在非法数据,将不合格的数据导出
|
|
||||||
if (excelImportResult.isVerifyFail()) {
|
|
||||||
// 此处前端要做特殊处理,具体可以参考技术监督的数据导入
|
|
||||||
Workbook failWorkbook = excelImportResult.getFailWorkbook();
|
|
||||||
PoiUtil.exportFileByWorkbook(failWorkbook, "非法被检设备数据.xlsx", response);
|
|
||||||
} else {
|
|
||||||
//批量录入数据
|
|
||||||
List<PqDevExcel.ContrastImportData> list = excelImportResult.getList();
|
|
||||||
pqDevService.importContrastData(list);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
throw new BusinessException(DevResponseEnum.IMPORT_DATA_FAIL);
|
|
||||||
}
|
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出灿能二楼设备
|
|
||||||
*
|
|
||||||
* @param queryParam
|
|
||||||
*/
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DOWNLOAD)
|
|
||||||
@PostMapping("/exportCNDev")
|
|
||||||
@ApiOperation("导出被检设备数据")
|
|
||||||
@ApiImplicitParam(name = "queryParam", value = "查询参数", required = true)
|
|
||||||
public void exportCNDev(@RequestBody @Validated PqDevParam.QueryParam queryParam) {
|
|
||||||
String methodDescribe = getMethodDescribe("exportCNDev");
|
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, queryParam);
|
|
||||||
|
|
||||||
pqDevService.exportCNDev(queryParam);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 下载灿能二楼设备导入文件模板
|
|
||||||
*/
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DOWNLOAD)
|
|
||||||
@PostMapping("/downloadCNDevTemplate")
|
|
||||||
@ApiOperation("下载被检设备导入文件模板")
|
|
||||||
public void downloadCNDevTemplate() {
|
|
||||||
pqDevService.downloadCNDevTemplate();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导入灿能二楼设备
|
|
||||||
*/
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPLOAD)
|
|
||||||
@PostMapping(value = "/importCNDev")
|
|
||||||
@ApiOperation("批量导入设备数据")
|
|
||||||
@ApiImplicitParams({
|
@ApiImplicitParams({
|
||||||
@ApiImplicitParam(name = "file", value = "被检设备数据文件", required = true),
|
@ApiImplicitParam(name = "file", value = "被检设备数据文件", required = true),
|
||||||
@ApiImplicitParam(name = "patternId", value = "模式id", required = true)
|
@ApiImplicitParam(name = "patternId", value = "模式id", required = true)
|
||||||
})
|
})
|
||||||
public HttpResult<String> importCNDev(@RequestParam("file") MultipartFile file,@RequestParam("patternId") String patternId, HttpServletResponse response) {
|
public HttpResult<Object> importDev(@RequestParam("file") MultipartFile file, @RequestParam("patternId") String patternId, HttpServletResponse response) {
|
||||||
String methodDescribe = getMethodDescribe("importCNDev");
|
String methodDescribe = getMethodDescribe("importDev");
|
||||||
LogUtil.njcnDebug(log, "{},上传文件为:{}", methodDescribe, file.getOriginalFilename());
|
LogUtil.njcnDebug(log, "{},上传文件为:{}", methodDescribe, file.getOriginalFilename());
|
||||||
|
|
||||||
boolean fileType = FileUtil.judgeFileIsExcel(file.getOriginalFilename());
|
boolean fileType = FileUtil.judgeFileIsExcel(file.getOriginalFilename());
|
||||||
if (!fileType) {
|
if (!fileType) {
|
||||||
throw new BusinessException(CommonResponseEnum.FILE_XLSX_ERROR);
|
throw new BusinessException(CommonResponseEnum.FILE_XLSX_ERROR);
|
||||||
}
|
}
|
||||||
|
pqDevService.importDev(file, patternId, null, response);
|
||||||
ImportParams params = new ImportParams();
|
|
||||||
params.setStartSheetIndex(0);
|
|
||||||
params.setSheetNum(1);
|
|
||||||
params.setHeadRows(1);
|
|
||||||
params.setNeedVerify(true);
|
|
||||||
|
|
||||||
List<CNDevExcel> cnDevExcelList;
|
|
||||||
try {
|
|
||||||
ExcelImportResult<CNDevExcel> excelImportResult = ExcelImportUtil.importExcelMore(file.getInputStream(), CNDevExcel.class, params);
|
|
||||||
if (excelImportResult.isVerifyFail()) {
|
|
||||||
// 此处前端要做特殊处理,具体可以参考技术监督的数据导入
|
|
||||||
Workbook failWorkbook = excelImportResult.getFailWorkbook();
|
|
||||||
PoiUtil.exportFileByWorkbook(failWorkbook, "非法被检设备数据.xlsx", response);
|
|
||||||
// throw new BusinessException(DevResponseEnum.IMPORT_DATA_FORMAT_FAIL);
|
|
||||||
return null;
|
|
||||||
} else {
|
|
||||||
cnDevExcelList = excelImportResult.getList();
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
throw new BusinessException(DevResponseEnum.IMPORT_DATA_FAIL);
|
|
||||||
}
|
|
||||||
if (ObjectUtil.isNotEmpty(cnDevExcelList)) {
|
|
||||||
pqDevService.importCNDev(cnDevExcelList, patternId, null);
|
|
||||||
}
|
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -314,29 +187,14 @@ public class PqDevController extends BaseController {
|
|||||||
@PostMapping("/documented")
|
@PostMapping("/documented")
|
||||||
@ApiOperation("设备归档")
|
@ApiOperation("设备归档")
|
||||||
@ApiImplicitParam(name = "id", value = "设备id", required = true)
|
@ApiImplicitParam(name = "id", value = "设备id", required = true)
|
||||||
public HttpResult<List<PqDev>> documented(@RequestBody List<String> ids) {
|
public HttpResult<Boolean> documented(@RequestBody List<String> ids) {
|
||||||
String methodDescribe = getMethodDescribe("documented");
|
String methodDescribe = getMethodDescribe("documented");
|
||||||
LogUtil.njcnDebug(log, "{},设备id为:{}", methodDescribe, ids);
|
LogUtil.njcnDebug(log, "{},设备id为:{}", methodDescribe, ids);
|
||||||
boolean result = pqDevService.documented(ids);
|
boolean result = pqDevService.documented(ids);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// @OperateInfo(operateType = OperateType.UPDATE)
|
|
||||||
// @PostMapping("/bindDev")
|
|
||||||
// @ApiOperation("检测计划绑定设备")
|
|
||||||
// @ApiImplicitParam(name = "bindPlanParam", value = "绑定参数", required = true)
|
|
||||||
// public HttpResult<Object> bindDev(@RequestBody @Validated PqDevParam.BindPlanParam bindPlanParam) {
|
|
||||||
// String methodDescribe = getMethodDescribe("bindDev");
|
|
||||||
// LogUtil.njcnDebug(log, "{},绑定计划数据为:planId={}, pqDevIds={}", methodDescribe, bindPlanParam.getPlanId(), String.join(StrUtil.COMMA, bindPlanParam.getPqDevIds()));
|
|
||||||
// boolean result = pqDevService.bind(bindPlanParam.getPlanId(), bindPlanParam.getPqDevIds());
|
|
||||||
// if (result) {
|
|
||||||
// return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
|
||||||
// } else {
|
|
||||||
// return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,8 +26,27 @@ public interface PqDevMapper extends MPJBaseMapper<PqDev> {
|
|||||||
|
|
||||||
void updateReportState(@Param("id")String id);
|
void updateReportState(@Param("id")String id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改检测计划的检测结果
|
||||||
|
*
|
||||||
|
* @param planId
|
||||||
|
* @param checkResult
|
||||||
|
*/
|
||||||
void updatePlanCheckResult(@Param("planId")String planId, @Param("checkResult")Integer checkResult);
|
void updatePlanCheckResult(@Param("planId")String planId, @Param("checkResult")Integer checkResult);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改检测计划的检测状态
|
||||||
|
*
|
||||||
|
* @param planId
|
||||||
|
* @param testState
|
||||||
|
*/
|
||||||
void updatePlanTestState(@Param("planId")String planId, @Param("testState")Integer testState);
|
void updatePlanTestState(@Param("planId")String planId, @Param("testState")Integer testState);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据计划id获取脚本id
|
||||||
|
*
|
||||||
|
* @param planId
|
||||||
|
*/
|
||||||
|
String getScriptIdByPlanId(String planId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -66,6 +66,8 @@
|
|||||||
update ad_plan set Test_State = #{testState} where id = #{planId}
|
update ad_plan set Test_State = #{testState} where id = #{planId}
|
||||||
</update>
|
</update>
|
||||||
|
|
||||||
|
<select id="getScriptIdByPlanId" resultType="java.lang.String">
|
||||||
|
SELECT Script_Id FROM ad_plan WHERE id = #{planId}
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
package com.njcn.gather.device.pojo.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
@Getter
|
|
||||||
public enum DevResponseEnum {
|
|
||||||
//NAME_REPEAT("A001001", "名称重复"),
|
|
||||||
|
|
||||||
IMPORT_DATA_FAIL("A001002", "导入数据失败"),
|
|
||||||
SERIES_AND_DEVKEY_NOT_BLANK("A001003", "当为加密设备时,加密设备的序列号和设备密钥不能为空"),
|
|
||||||
PQ_SOURCE_GEN_NAME_ERROR("A001004", "检测源生成名称出错"),
|
|
||||||
ERR_SOURCE_GEN_NAME_ERROR("A001005", "误差体系生成名称出错"),
|
|
||||||
PQ_ERRSYS_GEN_NAME_ERROR("A001005", "误差体系生成名称出错"),
|
|
||||||
PLAN_HAS_DEVICE_BIND("A001006", "检测计划下已绑定设备,请先解绑设备"),
|
|
||||||
PQ_DEV_REPEAT("A001007", "重复的被检设备"),
|
|
||||||
PQ_DEV_HAS_MONITOR("A001008", "该设备下关联有监测点,请先移除监测点"),
|
|
||||||
HAS_NOT_UNCHECKED_DEVICE("A001009", "设备在检测中或已被检测过,请勿解除绑定"),
|
|
||||||
IMPORT_PLAN_DATA_FAIL("A001010", "导入的检测计划为空"),
|
|
||||||
IMPORT_DATA_FORMAT_FAIL("A001011", "导入数据格式错误"),
|
|
||||||
IMPORT_SOURCE_ERROR("A001012","当前模式下一个检测计划只能有一个检测源" ),
|
|
||||||
IMPORT_DATASOURCE_ERROR("A001013","当前模式下一个检测计划只能有一个数据源" ),
|
|
||||||
DEV_UN_CHECKED("A001013","装置还未检测完成!" ),
|
|
||||||
DEV_UN_REPORT("A001013","装置报告未生成!" ),
|
|
||||||
DEVICE_DIS_ERROR("A001014","装置配置异常" ),
|
|
||||||
DEVICE_DELETE("A001015","设备无法删除,已绑定计划!" )
|
|
||||||
|
|
||||||
;
|
|
||||||
|
|
||||||
private final String message;
|
|
||||||
private final String code;
|
|
||||||
|
|
||||||
|
|
||||||
DevResponseEnum(String code, String message) {
|
|
||||||
this.code = code;
|
|
||||||
this.message = message;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,7 +2,7 @@ package com.njcn.gather.device.pojo.param;
|
|||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.monitor.pojo.param.PqMonitorParam;
|
import com.njcn.gather.monitor.pojo.param.PqMonitorParam;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
||||||
import com.njcn.web.pojo.param.BaseParam;
|
import com.njcn.web.pojo.param.BaseParam;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
@@ -22,61 +22,53 @@ import java.util.List;
|
|||||||
public class PqDevParam {
|
public class PqDevParam {
|
||||||
|
|
||||||
@ApiModelProperty(value = "名称", required = true)
|
@ApiModelProperty(value = "名称", required = true)
|
||||||
//@NotBlank(message = DevValidMessage.NAME_NOT_BLANK)
|
|
||||||
//@Pattern(regexp = PatternRegex.DEV_NAME_REGEX, message = DevValidMessage.NAME_FORMAT_ERROR)
|
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备模式,字典表(数字、模拟、比对)", required = true)
|
@ApiModelProperty(value = "设备模式,字典表(数字、模拟、比对)", required = true)
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PATTERN_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PATTERN_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
private String pattern;
|
private String pattern;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备类型,字典表", required = true)
|
@ApiModelProperty(value = "设备类型,字典表", required = true)
|
||||||
@NotBlank(message = DevValidMessage.DEV_TYPE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.DEV_TYPE_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.DEV_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.DEV_TYPE_FORMAT_ERROR)
|
||||||
private String devType;
|
private String devType;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备厂家,字典表", required = true)
|
@ApiModelProperty(value = "设备厂家,字典表", required = true)
|
||||||
//@NotBlank(message = DevValidMessage.MANUFACTURER_NOT_BLANK)
|
|
||||||
//@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.MANUFACTURER_FORMAT_ERROR)
|
|
||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
|
||||||
@ApiModelProperty(value = "出厂日期", required = true)
|
@ApiModelProperty(value = "出厂日期", required = true)
|
||||||
//@NotBlank(message = DevValidMessage.CREATEDATETIME_NOT_NULL)
|
|
||||||
//@DateTimeStrValid(format = "yyyy-MM-dd", message = DevValidMessage.CREATEDATETIME_FORMAT_ERROR)
|
|
||||||
private String createDate;
|
private String createDate;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备序列号", required = true)
|
@ApiModelProperty(value = "设备序列号", required = true)
|
||||||
@NotBlank(message = DevValidMessage.FACTORYNO_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.FACTORYNO_NOT_BLANK)
|
||||||
private String createId;
|
private String createId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "固件版本", required = true)
|
@ApiModelProperty(value = "固件版本", required = true)
|
||||||
//@NotBlank(message = DevValidMessage.FIRMWARE_NOT_BLANK)
|
|
||||||
private String hardwareVersion;
|
private String hardwareVersion;
|
||||||
|
|
||||||
@ApiModelProperty(value = "软件版本", required = true)
|
@ApiModelProperty(value = "软件版本", required = true)
|
||||||
//@NotBlank(message = DevValidMessage.SOFTWARE_NOT_BLANK)
|
|
||||||
private String softwareVersion;
|
private String softwareVersion;
|
||||||
|
|
||||||
@ApiModelProperty(value = "通讯协议", required = true)
|
@ApiModelProperty(value = "通讯协议", required = true)
|
||||||
@NotBlank(message = DevValidMessage.PROTOCOL_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PROTOCOL_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PROTOCOL_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PROTOCOL_FORMAT_ERROR)
|
||||||
private String protocol;
|
private String protocol;
|
||||||
|
|
||||||
@ApiModelProperty(value = "IP地址", required = true)
|
@ApiModelProperty(value = "IP地址", required = true)
|
||||||
@NotBlank(message = DevValidMessage.IP_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.IP_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.IP_REGEX, message = DevValidMessage.IP_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.IP_REGEX, message = DetectionValidMessage.IP_FORMAT_ERROR)
|
||||||
private String ip;
|
private String ip;
|
||||||
|
|
||||||
@ApiModelProperty(value = "端口号", required = true)
|
@ApiModelProperty(value = "端口号", required = true)
|
||||||
@NotNull(message = DevValidMessage.PORT_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.PORT_NOT_NULL)
|
||||||
@Range(min = 1, max = 65535, message = DevValidMessage.PORT_RANGE_ERROR)
|
@Range(min = 1, max = 65535, message = DetectionValidMessage.PORT_RANGE_ERROR)
|
||||||
private Integer port;
|
private Integer port;
|
||||||
|
|
||||||
@ApiModelProperty(value = "装置是否为加密版本", required = true)
|
@ApiModelProperty(value = "装置是否为加密版本", required = true)
|
||||||
@NotNull(message = DevValidMessage.ENCRYPTION_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.ENCRYPTION_NOT_NULL)
|
||||||
@Min(value = 0, message = DevValidMessage.ENCRYPTION_FLAG_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.ENCRYPTION_FLAG_FORMAT_ERROR)
|
||||||
@Max(value = 1, message = DevValidMessage.ENCRYPTION_FLAG_FORMAT_ERROR)
|
@Max(value = 1, message = DetectionValidMessage.ENCRYPTION_FLAG_FORMAT_ERROR)
|
||||||
private Integer encryptionFlag;
|
private Integer encryptionFlag;
|
||||||
|
|
||||||
@ApiModelProperty("装置识别码(3ds加密)")
|
@ApiModelProperty("装置识别码(3ds加密)")
|
||||||
@@ -89,7 +81,7 @@ public class PqDevParam {
|
|||||||
private String sampleId;
|
private String sampleId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "送样日期")
|
@ApiModelProperty(value = "送样日期")
|
||||||
@DateTimeStrValid(message = DevValidMessage.ARRIVE_DATE_FORMAT_ERROR)
|
@DateTimeStrValid(message = DetectionValidMessage.ARRIVE_DATE_FORMAT_ERROR)
|
||||||
private String arrivedDate;
|
private String arrivedDate;
|
||||||
|
|
||||||
@ApiModelProperty("所属地市名称")
|
@ApiModelProperty("所属地市名称")
|
||||||
@@ -108,13 +100,13 @@ public class PqDevParam {
|
|||||||
private String qrCode;
|
private String qrCode;
|
||||||
|
|
||||||
@ApiModelProperty(value = "检测次数,默认为0", required = true)
|
@ApiModelProperty(value = "检测次数,默认为0", required = true)
|
||||||
@NotNull(message = DevValidMessage.RECHECK_NUM_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.RECHECK_NUM_NOT_NULL)
|
||||||
@Min(value = 0, message = DevValidMessage.RECHECK_NUM_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.RECHECK_NUM_FORMAT_ERROR)
|
||||||
private Integer reCheckNum;
|
private Integer reCheckNum;
|
||||||
|
|
||||||
@ApiModelProperty("是否支持系数校准")
|
@ApiModelProperty("是否支持系数校准")
|
||||||
@Min(value = 0, message = DevValidMessage.FACTOR_FLAG_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.FACTOR_FLAG_FORMAT_ERROR)
|
||||||
@Max(value = 1, message = DevValidMessage.FACTOR_FLAG_FORMAT_ERROR)
|
@Max(value = 1, message = DetectionValidMessage.FACTOR_FLAG_FORMAT_ERROR)
|
||||||
private String factorFlag;
|
private String factorFlag;
|
||||||
|
|
||||||
@ApiModelProperty("监测点台账列表")
|
@ApiModelProperty("监测点台账列表")
|
||||||
@@ -123,9 +115,6 @@ public class PqDevParam {
|
|||||||
|
|
||||||
@ApiModelProperty("icdId")
|
@ApiModelProperty("icdId")
|
||||||
private String icdId;
|
private String icdId;
|
||||||
//
|
|
||||||
// @ApiModelProperty("power")
|
|
||||||
// private String power;
|
|
||||||
|
|
||||||
@ApiModelProperty("预投计划")
|
@ApiModelProperty("预投计划")
|
||||||
private String preinvestmentPlan;
|
private String preinvestmentPlan;
|
||||||
@@ -138,29 +127,9 @@ public class PqDevParam {
|
|||||||
public static class UpdateParam extends PqDevParam {
|
public static class UpdateParam extends PqDevParam {
|
||||||
|
|
||||||
@ApiModelProperty(value = "id", required = true)
|
@ApiModelProperty(value = "id", required = true)
|
||||||
@NotBlank(message = DevValidMessage.ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ID_FORMAT_ERROR)
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
// @ApiModelProperty("检测状态")
|
|
||||||
// @Min(value = 0, message = DevValidMessage.CHECK_STATE_FORMAT_ERROR)
|
|
||||||
// @Max(value = 3, message = DevValidMessage.CHECK_STATE_FORMAT_ERROR)
|
|
||||||
// private Integer checkState;
|
|
||||||
//
|
|
||||||
// @ApiModelProperty("检测结果")
|
|
||||||
// @Min(value = 0, message = DevValidMessage.CHECK_RESULT_FORMAT_ERROR)
|
|
||||||
// @Max(value = 2, message = DevValidMessage.CHECK_RESULT_FORMAT_ERROR)
|
|
||||||
// private Integer checkResult;
|
|
||||||
//
|
|
||||||
// @ApiModelProperty("报告状态")
|
|
||||||
// @Min(value = 0, message = DevValidMessage.REPORT_STATE_FORMAT_ERROR)
|
|
||||||
// @Max(value = 2, message = DevValidMessage.REPORT_STATE_FORMAT_ERROR)
|
|
||||||
// private Integer reportState;
|
|
||||||
//
|
|
||||||
// @ApiModelProperty("归档状态")
|
|
||||||
// @Min(value = 0, message = DevValidMessage.DOCUMENT_STATE_FORMAT_ERROR)
|
|
||||||
// @Max(value = 1, message = DevValidMessage.DOCUMENT_STATE_FORMAT_ERROR)
|
|
||||||
// private Integer documentState;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -170,7 +139,6 @@ public class PqDevParam {
|
|||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
public static class QueryParam extends BaseParam {
|
public static class QueryParam extends BaseParam {
|
||||||
@ApiModelProperty("名称")
|
@ApiModelProperty("名称")
|
||||||
// @Pattern(regexp = PatternRegex.DEV_NAME_REGEX, message = DevValidMessage.NAME_FORMAT_ERROR)
|
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备模式,字典表(数字、模拟、比对)")
|
@ApiModelProperty(value = "设备模式,字典表(数字、模拟、比对)")
|
||||||
@@ -180,22 +148,21 @@ public class PqDevParam {
|
|||||||
private String manufacturer;
|
private String manufacturer;
|
||||||
|
|
||||||
@ApiModelProperty("检测计划ID")
|
@ApiModelProperty("检测计划ID")
|
||||||
//@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PLAN_ID_FORMAT_ERROR)
|
|
||||||
private String planId;
|
private String planId;
|
||||||
|
|
||||||
@ApiModelProperty("检测状态列表")
|
@ApiModelProperty("检测状态列表")
|
||||||
private List<
|
private List<
|
||||||
@Min(value = 0, message = DevValidMessage.CHECK_STATE_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.CHECK_STATE_FORMAT_ERROR)
|
||||||
@Max(value = 3, message = DevValidMessage.CHECK_STATE_FORMAT_ERROR) Integer> checkStateList;
|
@Max(value = 3, message = DetectionValidMessage.CHECK_STATE_FORMAT_ERROR) Integer> checkStateList;
|
||||||
|
|
||||||
@ApiModelProperty("检测结果")
|
@ApiModelProperty("检测结果")
|
||||||
@Min(value = 0, message = DevValidMessage.CHECK_RESULT_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.CHECK_RESULT_FORMAT_ERROR)
|
||||||
@Max(value = 2, message = DevValidMessage.CHECK_RESULT_FORMAT_ERROR)
|
@Max(value = 2, message = DetectionValidMessage.CHECK_RESULT_FORMAT_ERROR)
|
||||||
private Integer checkResult;
|
private Integer checkResult;
|
||||||
|
|
||||||
@ApiModelProperty("报告状态")
|
@ApiModelProperty("报告状态")
|
||||||
@Min(value = 0, message = DevValidMessage.REPORT_STATE_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.REPORT_STATE_FORMAT_ERROR)
|
||||||
@Max(value = 2, message = DevValidMessage.REPORT_STATE_FORMAT_ERROR)
|
@Max(value = 2, message = DetectionValidMessage.REPORT_STATE_FORMAT_ERROR)
|
||||||
private Integer reportState;
|
private Integer reportState;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -203,23 +170,23 @@ public class PqDevParam {
|
|||||||
@Data
|
@Data
|
||||||
public static class DeleteParam {
|
public static class DeleteParam {
|
||||||
@ApiModelProperty(value = "ids")
|
@ApiModelProperty(value = "ids")
|
||||||
private List<@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.ID_FORMAT_ERROR) String> ids;
|
private List<@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ID_FORMAT_ERROR) String> ids;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备模式,字典表(数字、模拟、比对)", required = true)
|
@ApiModelProperty(value = "设备模式,字典表(数字、模拟、比对)", required = true)
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PATTERN_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PATTERN_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
private String pattern;
|
private String pattern;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public static class BindPlanParam {
|
public static class BindPlanParam {
|
||||||
@ApiModelProperty("检测计划ID")
|
@ApiModelProperty("检测计划ID")
|
||||||
@NotNull(message = DevValidMessage.PLAN_ID_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.PLAN_ID_NOT_NULL)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PLAN_ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PLAN_ID_FORMAT_ERROR)
|
||||||
private String planId;
|
private String planId;
|
||||||
|
|
||||||
@ApiModelProperty("被检设备ID列表")
|
@ApiModelProperty("被检设备ID列表")
|
||||||
@NotNull(message = DevValidMessage.PQ_DEV_IDS_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.PQ_DEV_IDS_NOT_NULL)
|
||||||
private List<String> pqDevIds;
|
private List<String> pqDevIds;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -195,6 +195,9 @@ public class PqDev extends BaseEntity implements Serializable {
|
|||||||
@TableField("Check_Time")
|
@TableField("Check_Time")
|
||||||
private LocalDateTime checkTime;
|
private LocalDateTime checkTime;
|
||||||
|
|
||||||
|
@TableField("Check_By")
|
||||||
|
private String checkBy;
|
||||||
|
|
||||||
@TableField("Preinvestment_Plan")
|
@TableField("Preinvestment_Plan")
|
||||||
private String preinvestmentPlan;
|
private String preinvestmentPlan;
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,8 @@ package com.njcn.gather.device.pojo.vo;
|
|||||||
|
|
||||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import org.hibernate.validator.constraints.Range;
|
import org.hibernate.validator.constraints.Range;
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotBlank;
|
||||||
@@ -19,42 +18,42 @@ import javax.validation.constraints.Pattern;
|
|||||||
public class CNDevExcel {
|
public class CNDevExcel {
|
||||||
|
|
||||||
@Excel(name = "预投计划*", width = 20, orderNum = "1")
|
@Excel(name = "预投计划*", width = 20, orderNum = "1")
|
||||||
@NotBlank(message = DevValidMessage.PREINVESTMENT_PLAN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PREINVESTMENT_PLAN_NOT_BLANK)
|
||||||
private String preinvestmentPlan;
|
private String preinvestmentPlan;
|
||||||
|
|
||||||
@Excel(name = "设备编号(开始编号-结束编号,编号为数字)*", width = 50, orderNum = "2")
|
@Excel(name = "设备编号(开始编号-结束编号,编号为数字)*", width = 50, orderNum = "2")
|
||||||
@NotBlank(message = DevValidMessage.NAME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.NAME_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.CN_DEV_NAME_REGEX, message = DevValidMessage.NAME_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.CN_DEV_NAME_REGEX, message = DetectionValidMessage.NAME_FORMAT_ERROR)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@Excel(name = "设备类型*", width = 20, orderNum = "3")
|
@Excel(name = "设备类型*", width = 20, orderNum = "3")
|
||||||
@NotBlank(message = DevValidMessage.DEV_TYPE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.DEV_TYPE_NOT_BLANK)
|
||||||
private String devType;
|
private String devType;
|
||||||
|
|
||||||
@Excel(name = "通讯协议*", width = 15, orderNum = "4")
|
@Excel(name = "通讯协议*", width = 15, orderNum = "4")
|
||||||
@NotBlank(message = DevValidMessage.PROTOCOL_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PROTOCOL_NOT_BLANK)
|
||||||
private String protocol;
|
private String protocol;
|
||||||
|
|
||||||
@Excel(name = "是否加密*", width = 20, replace = {"否_0", "是_1"}, orderNum = "5")
|
@Excel(name = "是否加密*", width = 20, replace = {"否_0", "是_1"}, orderNum = "5")
|
||||||
@NotNull(message = DevValidMessage.ENCRYPTION_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.ENCRYPTION_NOT_NULL)
|
||||||
private Integer encryptionFlag;
|
private Integer encryptionFlag;
|
||||||
|
|
||||||
@Excel(name = "识别码", width = 30, orderNum = "6")
|
@Excel(name = "识别码(当加密时必填)", width = 30, orderNum = "6")
|
||||||
private String series;
|
private String series;
|
||||||
|
|
||||||
@Excel(name = "秘钥", width = 30, orderNum = "7")
|
@Excel(name = "秘钥(当加密时必填)", width = 30, orderNum = "7")
|
||||||
private String devKey;
|
private String devKey;
|
||||||
|
|
||||||
@Excel(name = "是否支持系数校准*", width = 25, replace = {"否_0", "是_1"}, orderNum = "8")
|
@Excel(name = "是否支持系数校准*", width = 25, replace = {"否_0", "是_1"}, orderNum = "8")
|
||||||
private Integer factorFlag;
|
private Integer factorFlag;
|
||||||
|
|
||||||
@Excel(name = "IP地址*", width = 20, replace = {"否_0", "是_1"}, orderNum = "9")
|
@Excel(name = "IP地址*", width = 20, orderNum = "9")
|
||||||
@NotBlank(message = DevValidMessage.IP_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.IP_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.IP_REGEX, message = DevValidMessage.IP_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.IP_REGEX, message = DetectionValidMessage.IP_FORMAT_ERROR)
|
||||||
private String ip;
|
private String ip;
|
||||||
|
|
||||||
@Excel(name = "端口号*", width = 15, orderNum = "10")
|
@Excel(name = "端口号*", width = 15, orderNum = "10")
|
||||||
@NotNull(message = DevValidMessage.PORT_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.PORT_NOT_NULL)
|
||||||
@Range(min = 1, max = 65535, message = DevValidMessage.PORT_RANGE_ERROR)
|
@Range(min = 1, max = 65535, message = DetectionValidMessage.PORT_RANGE_ERROR)
|
||||||
private Integer port;
|
private Integer port;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,211 +0,0 @@
|
|||||||
package com.njcn.gather.device.pojo.vo;
|
|
||||||
|
|
||||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
||||||
import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
|
||||||
import com.njcn.gather.monitor.pojo.vo.PqMonitorExcel;
|
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
|
||||||
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import org.hibernate.validator.constraints.Range;
|
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
import javax.validation.constraints.Pattern;
|
|
||||||
import java.io.Serializable;
|
|
||||||
import java.time.LocalDate;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2024/11/7
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class PqDevExcel implements Serializable {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
@Excel(name = "名称", width = 20, needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.NAME_NOT_BLANK)
|
|
||||||
@Pattern(regexp = PatternRegex.DEV_NAME_REGEX, message = DevValidMessage.NAME_FORMAT_ERROR)
|
|
||||||
private String name;
|
|
||||||
|
|
||||||
@Excel(name = "设备类型", width = 20, orderNum = "2", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.DEV_TYPE_NOT_BLANK)
|
|
||||||
private String devType;
|
|
||||||
|
|
||||||
@Excel(name = "设备通道数", width = 20, orderNum = "3", needMerge = true)
|
|
||||||
@NotNull(message = DevValidMessage.DEV_CHNS_NOT_NULL)
|
|
||||||
private Integer devChns;
|
|
||||||
|
|
||||||
@Excel(name = "额定电压(V)", width = 15, orderNum = "4", needMerge = true)
|
|
||||||
@NotNull(message = DevValidMessage.DEV_VOLT_NOT_NULL)
|
|
||||||
private Float devVolt;
|
|
||||||
|
|
||||||
@Excel(name = "额定电流(A)", width = 15, orderNum = "5", needMerge = true)
|
|
||||||
@NotNull(message = DevValidMessage.DEV_CURR_NOT_NULL)
|
|
||||||
private Float devCurr;
|
|
||||||
|
|
||||||
@Excel(name = "设备厂家", width = 20, orderNum = "6", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.MANUFACTURER_NOT_BLANK)
|
|
||||||
private String manufacturer;
|
|
||||||
|
|
||||||
@Excel(name = "设备序列号", width = 40, orderNum = "8", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.FACTORYNO_NOT_BLANK)
|
|
||||||
private String createId;
|
|
||||||
|
|
||||||
@Excel(name = "固件版本", width = 15, orderNum = "9", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.FIRMWARE_NOT_BLANK)
|
|
||||||
private String hardwareVersion;
|
|
||||||
|
|
||||||
@Excel(name = "软件版本", width = 15, orderNum = "10", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.SOFTWARE_NOT_BLANK)
|
|
||||||
private String softwareVersion;
|
|
||||||
|
|
||||||
@Excel(name = "通讯协议", width = 15, orderNum = "11", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.PROTOCOL_NOT_BLANK)
|
|
||||||
private String protocol;
|
|
||||||
|
|
||||||
@Excel(name = "IP地址", width = 20, orderNum = "12", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.IP_NOT_BLANK)
|
|
||||||
@Pattern(regexp = PatternRegex.IP_REGEX, message = DevValidMessage.IP_FORMAT_ERROR)
|
|
||||||
private String ip;
|
|
||||||
|
|
||||||
@Excel(name = "端口号", orderNum = "13", needMerge = true)
|
|
||||||
@NotNull(message = DevValidMessage.PORT_NOT_NULL)
|
|
||||||
@Range(min = 1, max = 65535, message = DevValidMessage.PORT_RANGE_ERROR)
|
|
||||||
private Integer port;
|
|
||||||
|
|
||||||
@Excel(name = "是否为加密版本(否\\是)", width = 20, replace = {"否_0", "是_1"}, orderNum = "14", needMerge = true)
|
|
||||||
@NotNull(message = DevValidMessage.ENCRYPTION_NOT_NULL)
|
|
||||||
private Integer encryptionFlag;
|
|
||||||
|
|
||||||
@Excel(name = "识别码(当为加密版本时必填)", width = 30, orderNum = "15", needMerge = true)
|
|
||||||
private String series;
|
|
||||||
|
|
||||||
@Excel(name = "秘钥(当为加密版本时必填)", width = 30, orderNum = "16", needMerge = true)
|
|
||||||
private String devKey;
|
|
||||||
|
|
||||||
@Excel(name = "所属地市名称", width = 20, orderNum = "19", needMerge = true)
|
|
||||||
private String cityName;
|
|
||||||
|
|
||||||
@Excel(name = "所属供电公司名称", width = 20, orderNum = "20", needMerge = true)
|
|
||||||
private String gdName;
|
|
||||||
|
|
||||||
@Excel(name = "所属电站名称", width = 20, orderNum = "21", needMerge = true)
|
|
||||||
private String subName;
|
|
||||||
|
|
||||||
@Excel(name = "关键信息二维码", width = 20, orderNum = "30", needMerge = true)
|
|
||||||
private String qrCode;
|
|
||||||
|
|
||||||
@Excel(name = "检测次数", width = 15, orderNum = "31", needMerge = true)
|
|
||||||
@NotNull(message = DevValidMessage.RECHECK_NUM_NOT_NULL)
|
|
||||||
private Integer reCheckNum;
|
|
||||||
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public static class ExportData extends PqDevExcel {
|
|
||||||
|
|
||||||
@Excel(name = "设备模式", width = 20, orderNum = "1", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
|
||||||
private String pattern;
|
|
||||||
|
|
||||||
@Excel(name = "出厂日期(yyyy-MM-dd)", width = 25, format = "yyyy-MM-dd", orderNum = "7", needMerge = true)
|
|
||||||
@NotNull(message = DevValidMessage.CREATEDATETIME_NOT_NULL)
|
|
||||||
private LocalDate createDate;
|
|
||||||
|
|
||||||
@Excel(name = "是否支持系数校准(否\\是)", width = 15, replace = {"否_0", "是_1"}, orderNum = "22", needMerge = true)
|
|
||||||
private Integer factorFlag;
|
|
||||||
|
|
||||||
@Excel(name = "守时检测结果(不合格\\合格\\/)", replace = {"不合格_0", "合格_1", "/_2"}, width = 15, orderNum = "23", needMerge = true)
|
|
||||||
private Integer timeCheckResult;
|
|
||||||
|
|
||||||
@Excel(name = "系数校准结果(不合格\\合格\\/)", width = 15, replace = {"不合格_0", "合格_1", "/_2"}, orderNum = "24", needMerge = true)
|
|
||||||
private Integer factorCheckResult;
|
|
||||||
|
|
||||||
@Excel(name = "检测状态(未检\\检测中\\检测完成\\归档)", width = 15, replace = {"未检_0", "检测中_1", "检测完成_2", "归档_3"}, orderNum = "25", needMerge = true)
|
|
||||||
private Integer checkState;
|
|
||||||
|
|
||||||
@Excel(name = "检测结果(不符合\\符合\\未检)", width = 15, replace = {"不符合_0", "符合_1", "未检_2"}, orderNum = "26", needMerge = true)
|
|
||||||
private Integer checkResult;
|
|
||||||
|
|
||||||
@Excel(name = "报告状态(未生成\\已生成\\未检)", width = 15, replace = {"未生成_0", "已生成_1", "未检_2"}, orderNum = "27", needMerge = true)
|
|
||||||
private Integer reportState;
|
|
||||||
|
|
||||||
// @Excel(name = "归档状态(未归档\\归档)", width = 15, replace = {"未归档_0", "归档_1"}, orderNum = "28", needMerge = true)
|
|
||||||
// private Integer documentState;
|
|
||||||
|
|
||||||
@Excel(name = "报告路径", width = 20, orderNum = "29", needMerge = true)
|
|
||||||
private String reportPath;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 模拟式和比对式设备导出数据
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public static class SimulateOrDigitalExportData extends ExportData {
|
|
||||||
@Excel(name = "样品编号", width = 40, orderNum = "17", needMerge = true)
|
|
||||||
private String sampleId;
|
|
||||||
|
|
||||||
@Excel(name = "送样日期(yyyy-MM-dd)", width = 25, format = "yyyy-MM-dd", orderNum = "18", needMerge = true)
|
|
||||||
private LocalDate arrivedDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 比对式设备导出数据
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public static class ContrastExportData extends ExportData {
|
|
||||||
@ExcelCollection(name = "检测点台账", orderNum = "32")
|
|
||||||
List<PqMonitorExcel.ExportData> monitorList;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 被检设备导入数据
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public static class ImportData extends PqDevExcel {
|
|
||||||
|
|
||||||
@Excel(name = "出厂日期(yyyy-MM-dd)", width = 25, format = "yyyy-MM-dd", orderNum = "7", needMerge = true)
|
|
||||||
@NotNull(message = DevValidMessage.CREATEDATETIME_NOT_NULL)
|
|
||||||
@DateTimeStrValid(message = DevValidMessage.CREATEDATETIME_FORMAT_ERROR)
|
|
||||||
private String createDate;
|
|
||||||
|
|
||||||
|
|
||||||
@Excel(name = "是否支持系数校准(否\\是)", width = 15, replace = {"否_0", "是_1"}, orderNum = "22", needMerge = true)
|
|
||||||
@NotBlank(message = DevValidMessage.FACTOR_FLAG_NOT_BLANK)
|
|
||||||
private String factorFlag;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 模拟式和比对式设备导入数据
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public static class SimulateOrDigitalImportData extends ImportData {
|
|
||||||
@Excel(name = "样品编号", width = 40, orderNum = "17", needMerge = true)
|
|
||||||
private String sampleId;
|
|
||||||
|
|
||||||
@Excel(name = "送样日期(yyyy-MM-dd)", width = 25, format = "yyyy-MM-dd", orderNum = "18", needMerge = true)
|
|
||||||
@DateTimeStrValid(message = DevValidMessage.ARRIVE_DATE_FORMAT_ERROR)
|
|
||||||
private String arrivedDate;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 对比式设备导入数据
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public static class ContrastImportData extends ImportData {
|
|
||||||
@ExcelCollection(name = "检测点台账", orderNum = "32")
|
|
||||||
List<PqMonitorExcel.ImportData> monitorList;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
package com.njcn.gather.device.pojo.vo;
|
||||||
|
|
||||||
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||||
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.hibernate.validator.constraints.Range;
|
||||||
|
|
||||||
|
import javax.validation.constraints.NotBlank;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import javax.validation.constraints.Pattern;
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.time.LocalDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author caozehui
|
||||||
|
* @data 2024/11/7
|
||||||
|
* @description 省级平台设备Excel导入导出实体类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ProvinceDevExcel implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@Excel(name = "装置编号*", width = 20)
|
||||||
|
@NotBlank(message = DetectionValidMessage.FACTORYNO_NOT_BLANK)
|
||||||
|
private String createId;
|
||||||
|
|
||||||
|
@Excel(name = "设备名称*", width = 20, orderNum = "2")
|
||||||
|
@NotBlank(message = DetectionValidMessage.NAME_NOT_BLANK)
|
||||||
|
@Pattern(regexp = PatternRegex.DEV_NAME_REGEX, message = DetectionValidMessage.NAME_FORMAT_ERROR)
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
@Excel(name = "设备类型*", width = 20, orderNum = "3")
|
||||||
|
@NotBlank(message = DetectionValidMessage.DEV_TYPE_NOT_BLANK)
|
||||||
|
private String devType;
|
||||||
|
|
||||||
|
@Excel(name = "设备厂家*", width = 20, orderNum = "7")
|
||||||
|
@NotBlank(message = DetectionValidMessage.MANUFACTURER_NOT_BLANK)
|
||||||
|
private String manufacturer;
|
||||||
|
|
||||||
|
@Excel(name = "出厂日期*", width = 25, format = "yyyy-MM-dd", orderNum = "8")
|
||||||
|
@NotNull(message = DetectionValidMessage.CREATEDATETIME_NOT_NULL)
|
||||||
|
private LocalDate createDate;
|
||||||
|
|
||||||
|
@Excel(name = "固件版本", width = 15, orderNum = "9")
|
||||||
|
private String hardwareVersion;
|
||||||
|
|
||||||
|
@Excel(name = "软件版本", width = 15, orderNum = "10")
|
||||||
|
private String softwareVersion;
|
||||||
|
|
||||||
|
@Excel(name = "通讯协议*", width = 15, orderNum = "11")
|
||||||
|
@NotBlank(message = DetectionValidMessage.PROTOCOL_NOT_BLANK)
|
||||||
|
private String protocol;
|
||||||
|
|
||||||
|
@Excel(name = "是否加密*", width = 20, replace = {"否_0", "是_1"}, orderNum = "12")
|
||||||
|
@NotNull(message = DetectionValidMessage.ENCRYPTION_NOT_NULL)
|
||||||
|
private Integer encryptionFlag;
|
||||||
|
|
||||||
|
@Excel(name = "识别码(当加密时必填)", width = 30, orderNum = "13")
|
||||||
|
private String series;
|
||||||
|
|
||||||
|
@Excel(name = "秘钥(当加密时必填)", width = 30, orderNum = "14")
|
||||||
|
private String devKey;
|
||||||
|
|
||||||
|
@Excel(name = "是否支持系数校准*", width = 25, replace = {"否_0", "是_1"}, orderNum = "15")
|
||||||
|
private Integer factorFlag;
|
||||||
|
|
||||||
|
@Excel(name = "IP地址*", width = 20, orderNum = "16")
|
||||||
|
@NotBlank(message = DetectionValidMessage.IP_NOT_BLANK)
|
||||||
|
@Pattern(regexp = PatternRegex.IP_REGEX, message = DetectionValidMessage.IP_FORMAT_ERROR)
|
||||||
|
private String ip;
|
||||||
|
|
||||||
|
@Excel(name = "端口号*", width = 15, orderNum = "17")
|
||||||
|
@NotNull(message = DetectionValidMessage.PORT_NOT_NULL)
|
||||||
|
@Range(min = 1, max = 65535, message = DetectionValidMessage.PORT_RANGE_ERROR)
|
||||||
|
private Integer port;
|
||||||
|
}
|
||||||
@@ -2,15 +2,18 @@ package com.njcn.gather.device.service;
|
|||||||
|
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
|
import com.njcn.common.pojo.poi.PullDown;
|
||||||
import com.njcn.gather.device.pojo.enums.TimeCheckResultEnum;
|
import com.njcn.gather.device.pojo.enums.TimeCheckResultEnum;
|
||||||
import com.njcn.gather.device.pojo.param.PqDevParam;
|
import com.njcn.gather.device.pojo.param.PqDevParam;
|
||||||
import com.njcn.gather.device.pojo.po.PqDev;
|
import com.njcn.gather.device.pojo.po.PqDev;
|
||||||
import com.njcn.gather.device.pojo.vo.CNDevExcel;
|
import com.njcn.gather.device.pojo.vo.CNDevExcel;
|
||||||
import com.njcn.gather.device.pojo.vo.PqDevExcel;
|
|
||||||
import com.njcn.gather.device.pojo.vo.PqDevVO;
|
import com.njcn.gather.device.pojo.vo.PqDevVO;
|
||||||
import com.njcn.gather.device.pojo.vo.PreDetection;
|
import com.njcn.gather.device.pojo.vo.PreDetection;
|
||||||
|
import com.njcn.gather.device.pojo.vo.ProvinceDevExcel;
|
||||||
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@@ -67,7 +70,7 @@ public interface IPqDevService extends IService<PqDev> {
|
|||||||
* @param queryParam 查询参数
|
* @param queryParam 查询参数
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
List<PqDevExcel.SimulateOrDigitalExportData> getSimulateOrDigitExportData(PqDevParam.QueryParam queryParam);
|
//List<PqDevExcel.SimulateOrDigitalExportData> getSimulateOrDigitExportData(PqDevParam.QueryParam queryParam);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取比对式设备导出时所需的数据
|
* 获取比对式设备导出时所需的数据
|
||||||
@@ -75,26 +78,21 @@ public interface IPqDevService extends IService<PqDev> {
|
|||||||
* @param queryParam 查询参数
|
* @param queryParam 查询参数
|
||||||
* @return 比对式设备导出时所需的数据
|
* @return 比对式设备导出时所需的数据
|
||||||
*/
|
*/
|
||||||
List<PqDevExcel.ContrastExportData> getContrastExportData(PqDevParam.QueryParam queryParam);
|
//List<PqDevExcel.ContrastExportData> getContrastExportData(PqDevParam.QueryParam queryParam);
|
||||||
|
|
||||||
/**
|
|
||||||
* 下载模板文件
|
|
||||||
*/
|
|
||||||
void downloadTemplate();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量导入被检设备信息
|
* 批量导入被检设备信息
|
||||||
*
|
*
|
||||||
* @param sgEventExcels 批量导入的数据
|
* @param sgEventExcels 批量导入的数据
|
||||||
*/
|
*/
|
||||||
void importContrastData(List<PqDevExcel.ContrastImportData> sgEventExcels);
|
//void importContrastData(List<PqDevExcel.ContrastImportData> sgEventExcels);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量导入被检设备信息
|
* 批量导入被检设备信息
|
||||||
*
|
*
|
||||||
* @param sgEventExcels 批量导入的数据
|
* @param sgEventExcels 批量导入的数据
|
||||||
*/
|
*/
|
||||||
void importSimulateAndDigitalData(List<PqDevExcel.SimulateOrDigitalImportData> sgEventExcels);
|
//void importSimulateAndDigitalData(List<PqDevExcel.SimulateOrDigitalImportData> sgEventExcels);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取所有未绑定的设备
|
* 获取所有未绑定的设备
|
||||||
@@ -121,14 +119,6 @@ public interface IPqDevService extends IService<PqDev> {
|
|||||||
*/
|
*/
|
||||||
Integer bind(String planId, List<String> devIds);
|
Integer bind(String planId, List<String> devIds);
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取饼图数据
|
|
||||||
*
|
|
||||||
* @param planId 检测计划id
|
|
||||||
* @return 饼图数据
|
|
||||||
*/
|
|
||||||
//List<List<Map<String, Object>>> getPieData(String planId);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据id获取被检设备信息
|
* 根据id获取被检设备信息
|
||||||
*
|
*
|
||||||
@@ -137,25 +127,6 @@ public interface IPqDevService extends IService<PqDev> {
|
|||||||
*/
|
*/
|
||||||
PqDevVO getPqDevById(String id);
|
PqDevVO getPqDevById(String id);
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取所有非未检测状态的设备
|
|
||||||
*
|
|
||||||
* @return 所有非未检测状态的设备列表
|
|
||||||
*/
|
|
||||||
List<PqDev> listUnchecked();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 可视化,各种id回显字典值,解码等操作
|
|
||||||
*
|
|
||||||
* @param sourceList
|
|
||||||
*/
|
|
||||||
void visualize(List<PqDev> sourceList);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 逆向可视化
|
|
||||||
*/
|
|
||||||
void reverseVisualize(List<PqDev> sourceList);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取装置信息和装置下监测点信息
|
* 获取装置信息和装置下监测点信息
|
||||||
*
|
*
|
||||||
@@ -174,42 +145,21 @@ public interface IPqDevService extends IService<PqDev> {
|
|||||||
*/
|
*/
|
||||||
boolean documented(List<String> id);
|
boolean documented(List<String> id);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 正式监测完成,修改中断状态
|
* 正式监测完成,修改中断状态
|
||||||
*
|
*
|
||||||
* @param ids
|
* @param ids
|
||||||
* @param valueType
|
* @param valueType
|
||||||
* @param code
|
* @param code
|
||||||
|
* @param userId
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
boolean updateResult(List<String> ids, List<String> valueType, String code);
|
boolean updateResult(List<String> ids, List<String> valueType, String code,String userId);
|
||||||
|
|
||||||
void updatePqDevReportState(String devId, int i);
|
void updatePqDevReportState(String devId, int i);
|
||||||
|
|
||||||
int countUnReportDev(String planId);
|
int countUnReportDev(String planId);
|
||||||
|
|
||||||
/**
|
|
||||||
* 导出灿能二楼设备数据
|
|
||||||
*
|
|
||||||
* @param queryParam
|
|
||||||
*/
|
|
||||||
void exportCNDev(PqDevParam.QueryParam queryParam);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 下载灿能二楼设备模板文件
|
|
||||||
*/
|
|
||||||
void downloadCNDevTemplate();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 导入灿能二楼设备数据
|
|
||||||
*
|
|
||||||
* @param cnDevExcelList 灿能二楼设备数据列表
|
|
||||||
* @param patternId 模式Id
|
|
||||||
* @param planId 计划Id
|
|
||||||
*/
|
|
||||||
void importCNDev(List<CNDevExcel> cnDevExcelList, String patternId, String planId);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据计划id列表获取设备列表
|
* 根据计划id列表获取设备列表
|
||||||
*
|
*
|
||||||
@@ -218,6 +168,47 @@ public interface IPqDevService extends IService<PqDev> {
|
|||||||
*/
|
*/
|
||||||
List<PqDev> listByPlanIds(List<String> planIds);
|
List<PqDev> listByPlanIds(List<String> planIds);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导出设备数据
|
||||||
|
*
|
||||||
|
* @param queryParam
|
||||||
|
*/
|
||||||
|
void exportDev(PqDevParam.QueryParam queryParam);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下载模板文件
|
||||||
|
*/
|
||||||
|
void downloadTemplate();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入设备数据
|
||||||
|
*
|
||||||
|
* @param file 上传的文件
|
||||||
|
* @param patternId 模式Id
|
||||||
|
* @param planId 计划Id
|
||||||
|
* @param response 响应
|
||||||
|
*/
|
||||||
|
void importDev(MultipartFile file, String patternId, String planId, HttpServletResponse response);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入灿能二楼设备数据
|
||||||
|
*
|
||||||
|
* @param file 上传的文件
|
||||||
|
* @param patternId 模式Id
|
||||||
|
* @param planId 计划Id
|
||||||
|
* @param response 响应
|
||||||
|
*/
|
||||||
|
void importCNDev(MultipartFile file, String patternId, String planId, HttpServletResponse response);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入灿能二楼设备数据
|
||||||
|
*
|
||||||
|
* @param cnDevExcelList
|
||||||
|
* @param patternId
|
||||||
|
* @param planId
|
||||||
|
*/
|
||||||
|
void importCNDev(List<CNDevExcel> cnDevExcelList, String patternId, String planId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 可视化-灿能二楼设备
|
* 可视化-灿能二楼设备
|
||||||
*
|
*
|
||||||
@@ -228,8 +219,57 @@ public interface IPqDevService extends IService<PqDev> {
|
|||||||
/**
|
/**
|
||||||
* 逆向可视化-灿能二楼设备
|
* 逆向可视化-灿能二楼设备
|
||||||
*
|
*
|
||||||
* @param pqDevs 设备列表
|
* @param pqDevs 设备列表
|
||||||
* @param patternId 模式Id
|
* @param patternId 模式Id
|
||||||
*/
|
*/
|
||||||
void reverseVisualizeCNDev(List<PqDev> pqDevs, String patternId);
|
void reverseVisualizeCNDev(List<PqDev> pqDevs, String patternId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入省级平台设备数据
|
||||||
|
*
|
||||||
|
* @param file 上传的文件
|
||||||
|
* @param patternId 模式Id
|
||||||
|
* @param planId 计划Id
|
||||||
|
* @param response 响应
|
||||||
|
*/
|
||||||
|
void importProvinceDev(MultipartFile file, String patternId, String planId, HttpServletResponse response);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入省级平台设备数据
|
||||||
|
*
|
||||||
|
* @param proviceDevExcelList
|
||||||
|
* @param patternId
|
||||||
|
* @param planId
|
||||||
|
*/
|
||||||
|
void importProvinceDev(List<ProvinceDevExcel> proviceDevExcelList, String patternId, String planId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可视化-省级平台设备
|
||||||
|
*
|
||||||
|
* @param pqDevs
|
||||||
|
*/
|
||||||
|
void visualizeProvinceDev(List<PqDev> pqDevs);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 逆向可视化-省级平台设备
|
||||||
|
*
|
||||||
|
* @param pqDevs 设备列表
|
||||||
|
* @param patternId 模式Id
|
||||||
|
*/
|
||||||
|
void reverseVisualizeProvinceDev(List<PqDev> pqDevs, String patternId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取省级平台设备导出、导出文件模板的下拉列表
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<PullDown> getProvinceDevPullDownList(int startCol);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取灿能二楼设备导出、导出文件模板的下拉列表
|
||||||
|
*
|
||||||
|
* @param startCol 开始列
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<PullDown> getCNDevPullDownList(int startCol);
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -63,14 +63,14 @@ public class PqErrSysController extends BaseController {
|
|||||||
@PostMapping("/add")
|
@PostMapping("/add")
|
||||||
@ApiOperation("新增误差体系")
|
@ApiOperation("新增误差体系")
|
||||||
@ApiImplicitParam(name = "param", value = "误差体系", required = true)
|
@ApiImplicitParam(name = "param", value = "误差体系", required = true)
|
||||||
public HttpResult<Object> add(@RequestBody @Validated PqErrSysParam param) {
|
public HttpResult<Boolean> add(@RequestBody @Validated PqErrSysParam param) {
|
||||||
String methodDescribe = getMethodDescribe("add");
|
String methodDescribe = getMethodDescribe("add");
|
||||||
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
||||||
boolean result = pqErrSysService.addPqErrSys(param);
|
boolean result = pqErrSysService.addPqErrSys(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -78,14 +78,14 @@ public class PqErrSysController extends BaseController {
|
|||||||
@PostMapping("/update")
|
@PostMapping("/update")
|
||||||
@ApiOperation("修改误差体系")
|
@ApiOperation("修改误差体系")
|
||||||
@ApiImplicitParam(name = "param", value = "误差体系", required = true)
|
@ApiImplicitParam(name = "param", value = "误差体系", required = true)
|
||||||
public HttpResult<Object> update(@RequestBody @Validated PqErrSysParam.UpdateParam param) {
|
public HttpResult<Boolean> update(@RequestBody @Validated PqErrSysParam.UpdateParam param) {
|
||||||
String methodDescribe = getMethodDescribe("update");
|
String methodDescribe = getMethodDescribe("update");
|
||||||
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, param);
|
||||||
boolean result = pqErrSysService.updatePqErrSys(param);
|
boolean result = pqErrSysService.updatePqErrSys(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -93,14 +93,14 @@ public class PqErrSysController extends BaseController {
|
|||||||
@PostMapping("/delete")
|
@PostMapping("/delete")
|
||||||
@ApiOperation("删除误差体系")
|
@ApiOperation("删除误差体系")
|
||||||
@ApiImplicitParam(name = "ids", value = "误差体系id", required = true)
|
@ApiImplicitParam(name = "ids", value = "误差体系id", required = true)
|
||||||
public HttpResult<Object> delete(@RequestBody List<String> ids) {
|
public HttpResult<Boolean> delete(@RequestBody List<String> ids) {
|
||||||
String methodDescribe = getMethodDescribe("delete");
|
String methodDescribe = getMethodDescribe("delete");
|
||||||
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
||||||
boolean result = pqErrSysService.deletePqErrSys(ids);
|
boolean result = pqErrSysService.deletePqErrSys(ids);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -125,19 +125,19 @@ public class PqErrSysController extends BaseController {
|
|||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
// @OperateInfo(operateType = OperateType.ADD)
|
@OperateInfo(operateType = OperateType.ADD)
|
||||||
// @GetMapping("/copy")
|
@GetMapping("/copy")
|
||||||
// @ApiOperation("复制误差体系")
|
@ApiOperation("复制误差体系")
|
||||||
// @ApiImplicitParam(name = "id", value = "误差体系id", required = true)
|
@ApiImplicitParam(name = "id", value = "误差体系id", required = true)
|
||||||
// public HttpResult<Object> copy(@RequestParam("id") String id) {
|
public HttpResult<Boolean> copy(@RequestParam("id") String id) {
|
||||||
// String methodDescribe = getMethodDescribe("copy");
|
String methodDescribe = getMethodDescribe("copy");
|
||||||
// LogUtil.njcnDebug(log, "{},复制ID为:{}", methodDescribe, id);
|
LogUtil.njcnDebug(log, "{},复制ID为:{}", methodDescribe, id);
|
||||||
// boolean result = pqErrSysService.copyPqErrSys(id);
|
boolean result = pqErrSysService.copyPqErrSys(id);
|
||||||
// if (result) {
|
if (result) {
|
||||||
// return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
// } else {
|
} else {
|
||||||
// return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
package com.njcn.gather.err.pojo.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-03-10
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
public enum ErrResponseEnum {
|
|
||||||
ERR_SYS_BOUND_NOT_DELETE("A100001","误差体系已被计划所绑定,无法删除!");
|
|
||||||
|
|
||||||
private String code;
|
|
||||||
private String message;
|
|
||||||
|
|
||||||
ErrResponseEnum(String code, String message) {
|
|
||||||
this.code = code;
|
|
||||||
this.message = message;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
package com.njcn.gather.err.pojo.param;
|
package com.njcn.gather.err.pojo.param;
|
||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@@ -17,13 +17,13 @@ import javax.validation.constraints.Pattern;
|
|||||||
public class PqErrSysDtlsParam {
|
public class PqErrSysDtlsParam {
|
||||||
|
|
||||||
@ApiModelProperty(value = "误差项类型", required = true)
|
@ApiModelProperty(value = "误差项类型", required = true)
|
||||||
@NotBlank(message = DevValidMessage.ERR_SYS_DTLS_ERROR_TYPE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ERR_SYS_DTLS_ERROR_TYPE_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.ERR_SYS_DTLS_ERROR_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ERR_SYS_DTLS_ERROR_TYPE_FORMAT_ERROR)
|
||||||
private String errorType;
|
private String errorType;
|
||||||
|
|
||||||
@ApiModelProperty(value = "脚本项类型", required = true)
|
@ApiModelProperty(value = "脚本项类型", required = true)
|
||||||
@NotBlank(message = DevValidMessage.ERR_SYS_DTLS_SCRIPT_TYPE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ERR_SYS_DTLS_SCRIPT_TYPE_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.ERR_SYS_DTLS_SCRIPT_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ERR_SYS_DTLS_SCRIPT_TYPE_FORMAT_ERROR)
|
||||||
private String scriptType;
|
private String scriptType;
|
||||||
|
|
||||||
@ApiModelProperty(value = "误差判断起始值", required = true)
|
@ApiModelProperty(value = "误差判断起始值", required = true)
|
||||||
@@ -47,15 +47,15 @@ public class PqErrSysDtlsParam {
|
|||||||
private Integer conditionType;
|
private Integer conditionType;
|
||||||
|
|
||||||
@ApiModelProperty(value = "最大值误差", required = true)
|
@ApiModelProperty(value = "最大值误差", required = true)
|
||||||
@NotNull(message = DevValidMessage.MAX_ERROR_VALUE_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.MAX_ERROR_VALUE_NOT_NULL)
|
||||||
private Double maxErrorValue;
|
private Double maxErrorValue;
|
||||||
|
|
||||||
@ApiModelProperty(value = "误差值类型", required = true)
|
@ApiModelProperty(value = "误差值类型", required = true)
|
||||||
@NotNull(message = DevValidMessage.ERROR_VALUE_TYPE_NOT_BLANK)
|
@NotNull(message = DetectionValidMessage.ERROR_VALUE_TYPE_NOT_BLANK)
|
||||||
private Integer errorValueType;
|
private Integer errorValueType;
|
||||||
|
|
||||||
@ApiModelProperty("排序")
|
@ApiModelProperty("排序")
|
||||||
@NotNull(message = DevValidMessage.SORT_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.SORT_NOT_NULL)
|
||||||
private Integer sort;
|
private Integer sort;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package com.njcn.gather.err.pojo.param;
|
package com.njcn.gather.err.pojo.param;
|
||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
||||||
import com.njcn.web.pojo.param.BaseParam;
|
import com.njcn.web.pojo.param.BaseParam;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
@@ -20,24 +20,24 @@ import java.util.List;
|
|||||||
public class PqErrSysParam {
|
public class PqErrSysParam {
|
||||||
|
|
||||||
@ApiModelProperty(value = "参照标准名称", required = true)
|
@ApiModelProperty(value = "参照标准名称", required = true)
|
||||||
@NotBlank(message = DevValidMessage.STANDARD_NAME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.STANDARD_NAME_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.ERR_SYS_NAME, message = DevValidMessage.STANDARD_NAME_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.ERR_SYS_NAME, message = DetectionValidMessage.STANDARD_NAME_FORMAT_ERROR)
|
||||||
private String standardName;
|
private String standardName;
|
||||||
|
|
||||||
@ApiModelProperty(value = "标准实施年份", required = true)
|
@ApiModelProperty(value = "标准实施年份", required = true)
|
||||||
@NotBlank(message = DevValidMessage.STANDARD_TIME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.STANDARD_TIME_NOT_BLANK)
|
||||||
@DateTimeStrValid(format = "yyyy", message = DevValidMessage.STANDARD_TIME_FORMAT_ERROR)
|
@DateTimeStrValid(format = "yyyy", message = DetectionValidMessage.STANDARD_TIME_FORMAT_ERROR)
|
||||||
private String standardTime;
|
private String standardTime;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备等级", required = true)
|
@ApiModelProperty(value = "设备等级", required = true)
|
||||||
@NotBlank(message = DevValidMessage.DEV_LEVEL_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.DEV_LEVEL_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.DEV_LEVEL_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.DEV_LEVEL_FORMAT_ERROR)
|
||||||
private String devLevel;
|
private String devLevel;
|
||||||
|
|
||||||
@ApiModelProperty("状态")
|
@ApiModelProperty("状态")
|
||||||
@NotNull(message = DevValidMessage.ENABLE_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.ENABLE_NOT_NULL)
|
||||||
@Min(value = 0, message = DevValidMessage.ENABLE_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.ENABLE_FORMAT_ERROR)
|
||||||
@Max(value = 1, message = DevValidMessage.ENABLE_FORMAT_ERROR)
|
@Max(value = 1, message = DetectionValidMessage.ENABLE_FORMAT_ERROR)
|
||||||
private Integer enable;
|
private Integer enable;
|
||||||
|
|
||||||
@ApiModelProperty(value = "误差详情列表", required = true)
|
@ApiModelProperty(value = "误差详情列表", required = true)
|
||||||
@@ -48,11 +48,11 @@ public class PqErrSysParam {
|
|||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
public static class QueryParam extends BaseParam {
|
public static class QueryParam extends BaseParam {
|
||||||
@ApiModelProperty("标准实施年份")
|
@ApiModelProperty("标准实施年份")
|
||||||
@DateTimeStrValid(format = "yyyy", message = DevValidMessage.STANDARD_TIME_FORMAT_ERROR)
|
@DateTimeStrValid(format = "yyyy", message = DetectionValidMessage.STANDARD_TIME_FORMAT_ERROR)
|
||||||
private String standardTime;
|
private String standardTime;
|
||||||
|
|
||||||
@ApiModelProperty("设备等级")
|
@ApiModelProperty("设备等级")
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.DEV_LEVEL_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.DEV_LEVEL_FORMAT_ERROR)
|
||||||
private String devLevel;
|
private String devLevel;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,14 +60,14 @@ public class PqErrSysParam {
|
|||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
public static class UpdateParam extends PqErrSysParam {
|
public static class UpdateParam extends PqErrSysParam {
|
||||||
@ApiModelProperty("id")
|
@ApiModelProperty("id")
|
||||||
@NotBlank(message = DevValidMessage.ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ID_FORMAT_ERROR)
|
||||||
private String id;
|
private String id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
public static class DetectionParam{
|
public static class DetectionParam {
|
||||||
@ApiModelProperty("所属误差体系ID")
|
@ApiModelProperty("所属误差体系ID")
|
||||||
private String errorSysId;
|
private String errorSysId;
|
||||||
|
|
||||||
|
|||||||
@@ -38,6 +38,11 @@ public class ErrDtlsCheckDataVO implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String phase;
|
private String phase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 默认参与比较值(4.不参与值 5.不参与误差比较)
|
||||||
|
*/
|
||||||
|
private Integer isQualified;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 误差体系
|
* 误差体系
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -78,5 +78,5 @@ public interface IPqErrSysService extends IService<PqErrSys> {
|
|||||||
* @param id 误差体系id
|
* @param id 误差体系id
|
||||||
* @return 成功返回true,失败返回false
|
* @return 成功返回true,失败返回false
|
||||||
*/
|
*/
|
||||||
//boolean copyPqErrSys(String id);
|
boolean copyPqErrSys(String id);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ public class PqErrSysDtlsServiceImpl extends ServiceImpl<PqErrSysDtlsMapper, PqE
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean addPqErrSysDtls(String pqErrSysId, List<PqErrSysDtlsParam> list) {
|
public boolean addPqErrSysDtls(String pqErrSysId, List<PqErrSysDtlsParam> list) {
|
||||||
List<PqErrSysDtls> data = new ArrayList<>();
|
List<PqErrSysDtls> data = new ArrayList<>();
|
||||||
for (PqErrSysDtlsParam param : list) {
|
for (PqErrSysDtlsParam param : list) {
|
||||||
@@ -57,7 +57,7 @@ public class PqErrSysDtlsServiceImpl extends ServiceImpl<PqErrSysDtlsMapper, PqE
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updatePqErrSysDtls(String pqErrSysId, List<PqErrSysDtlsParam> list) {
|
public boolean updatePqErrSysDtls(String pqErrSysId, List<PqErrSysDtlsParam> list) {
|
||||||
//先按照pqErrSysId全部删除
|
//先按照pqErrSysId全部删除
|
||||||
this.deletePqErrSysDtlsByPqErrSysId(Collections.singletonList(pqErrSysId));
|
this.deletePqErrSysDtlsByPqErrSysId(Collections.singletonList(pqErrSysId));
|
||||||
@@ -67,7 +67,7 @@ public class PqErrSysDtlsServiceImpl extends ServiceImpl<PqErrSysDtlsMapper, PqE
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deletePqErrSysDtlsByPqErrSysId(List<String> pqErrSysIds) {
|
public boolean deletePqErrSysDtlsByPqErrSysId(List<String> pqErrSysIds) {
|
||||||
QueryWrapper<PqErrSysDtls> queryWrapper = new QueryWrapper<>();
|
QueryWrapper<PqErrSysDtls> queryWrapper = new QueryWrapper<>();
|
||||||
queryWrapper.in("pq_err_sys_dtls.Error_Sys_Id", pqErrSysIds);
|
queryWrapper.in("pq_err_sys_dtls.Error_Sys_Id", pqErrSysIds);
|
||||||
@@ -94,34 +94,38 @@ public class PqErrSysDtlsServiceImpl extends ServiceImpl<PqErrSysDtlsMapper, PqE
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<ErrDtlsCheckDataVO> listByPqErrSysIdAndTypes(PqErrSysParam.DetectionParam param) {
|
public List<ErrDtlsCheckDataVO> listByPqErrSysIdAndTypes(PqErrSysParam.DetectionParam param) {
|
||||||
List<ErrDtlsCheckDataVO> info=new ArrayList<>();
|
List<ErrDtlsCheckDataVO> info = new ArrayList<>();
|
||||||
PqScriptCheckDataParam checkDataParam = new PqScriptCheckDataParam();
|
PqScriptCheckDataParam checkDataParam = new PqScriptCheckDataParam();
|
||||||
checkDataParam.setScriptId(param.getScriptId());
|
checkDataParam.setScriptId(param.getScriptId());
|
||||||
checkDataParam.setIndex(param.getIndex());
|
checkDataParam.setIndex(param.getIndex());
|
||||||
|
//获取检测脚本中所有装置下发的测试项
|
||||||
List<PqScriptCheckData> list = pqScriptCheckDataService.listCheckDataCode(checkDataParam);
|
List<PqScriptCheckData> list = pqScriptCheckDataService.listCheckDataCode(checkDataParam);
|
||||||
Boolean isValueType = pqScriptMapper.selectScriptIsValueType(param.getScriptId());
|
Boolean isValueType = pqScriptMapper.selectScriptIsValueType(param.getScriptId());
|
||||||
|
|
||||||
List<String> valueType = list.stream().filter(x->x.getErrorFlag()!=0).map(PqScriptCheckData::getValueType).collect(Collectors.toList());
|
Map<String, Integer> valueType = list.stream().collect(Collectors.toMap(PqScriptCheckData::getValueType, PqScriptCheckData::getErrorFlag,
|
||||||
Map<String, List<PqErrSysDtls>> errMap =new HashMap<>(3);
|
(key1, key2) -> key1));
|
||||||
if(CollUtil.isNotEmpty(valueType)){
|
|
||||||
|
//获取误差体系
|
||||||
|
Map<String, List<PqErrSysDtls>> errMap = new HashMap<>(3); //key为误差详情的ScriptType,value为List<PqErrSysDtls>
|
||||||
|
if (CollUtil.isNotEmpty(valueType)) {
|
||||||
List<PqErrSysDtls> errSysDtls = this.list(new MPJLambdaWrapper<PqErrSysDtls>().selectAll(PqErrSysDtls.class)
|
List<PqErrSysDtls> errSysDtls = this.list(new MPJLambdaWrapper<PqErrSysDtls>().selectAll(PqErrSysDtls.class)
|
||||||
.selectAll(PqErrSysDtls.class)
|
.selectAll(PqErrSysDtls.class)
|
||||||
.selectAs(DictTree::getCode, PqErrSysDtls::getScriptCode)
|
.selectAs(DictTree::getCode, PqErrSysDtls::getScriptCode)
|
||||||
.leftJoin(DictTree.class, DictTree::getId, PqErrSysDtls::getScriptType)
|
.leftJoin(DictTree.class, DictTree::getId, PqErrSysDtls::getScriptType)
|
||||||
.eq(PqErrSysDtls::getErrorSysId, param.getErrorSysId())
|
.eq(PqErrSysDtls::getErrorSysId, param.getErrorSysId())
|
||||||
.in(PqErrSysDtls::getScriptType, valueType)
|
.in(PqErrSysDtls::getScriptType, valueType.keySet())
|
||||||
);
|
);
|
||||||
errMap= errSysDtls.stream().collect(Collectors.groupingBy(PqErrSysDtls::getScriptType));
|
errMap = errSysDtls.stream().collect(Collectors.groupingBy(PqErrSysDtls::getScriptType));
|
||||||
}
|
}
|
||||||
ErrDtlsCheckDataVO dataVO;
|
ErrDtlsCheckDataVO dataVO;
|
||||||
for (PqScriptCheckData script : list) {
|
for (PqScriptCheckData script : list) {
|
||||||
dataVO=new ErrDtlsCheckDataVO();
|
dataVO = new ErrDtlsCheckDataVO();
|
||||||
dataVO.setCheckDataId(script.getScriptId());
|
dataVO.setCheckDataId(script.getScriptId());
|
||||||
dataVO.setValueTypeCode(script.getValueTypeCode());
|
dataVO.setValueTypeCode(script.getValueTypeCode());
|
||||||
dataVO.setValueType(script.getValueType());
|
dataVO.setValueType(script.getValueType());
|
||||||
dataVO.setValue(script.getValue());
|
dataVO.setValue(script.getValue());
|
||||||
dataVO.setPhase(script.getPhase());
|
dataVO.setPhase(script.getPhase());
|
||||||
if(isValueType){
|
if (isValueType) {
|
||||||
if (DetectionCodeEnum.VRMS.getCode().equals(script.getValueTypeCode())) {
|
if (DetectionCodeEnum.VRMS.getCode().equals(script.getValueTypeCode())) {
|
||||||
BigDecimal volValue = new BigDecimal(script.getValue());
|
BigDecimal volValue = new BigDecimal(script.getValue());
|
||||||
BigDecimal result = volValue.multiply(new BigDecimal(param.getUn().toString()))
|
BigDecimal result = volValue.multiply(new BigDecimal(param.getUn().toString()))
|
||||||
@@ -135,9 +139,17 @@ public class PqErrSysDtlsServiceImpl extends ServiceImpl<PqErrSysDtlsMapper, PqE
|
|||||||
dataVO.setValue(result.doubleValue());
|
dataVO.setValue(result.doubleValue());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (valueType.containsKey(script.getValueType())) {
|
||||||
if(errMap.containsKey(script.getValueType())){
|
//默认值4.无法处理 5.不参与误差比较
|
||||||
dataVO.setErrSysDtls(errMap.get(script.getValueType()));
|
Integer i = valueType.get(script.getValueType());
|
||||||
|
if (i == 1) { //参与误差比较
|
||||||
|
dataVO.setIsQualified(4);
|
||||||
|
if (errMap.containsKey(script.getValueType())) {
|
||||||
|
dataVO.setErrSysDtls(errMap.get(script.getValueType()));
|
||||||
|
}
|
||||||
|
} else { //不参与误差比较
|
||||||
|
dataVO.setIsQualified(5);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
info.add(dataVO);
|
info.add(dataVO);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package com.njcn.gather.err.service.impl;
|
package com.njcn.gather.err.service.impl;
|
||||||
|
|
||||||
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
import cn.hutool.core.text.StrPool;
|
import cn.hutool.core.text.StrPool;
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
@@ -8,14 +9,14 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|||||||
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
||||||
import com.njcn.common.pojo.exception.BusinessException;
|
import com.njcn.common.pojo.exception.BusinessException;
|
||||||
import com.njcn.gather.err.mapper.PqErrSysMapper;
|
import com.njcn.gather.err.mapper.PqErrSysMapper;
|
||||||
import com.njcn.gather.err.pojo.enums.ErrResponseEnum;
|
import com.njcn.gather.err.pojo.param.PqErrSysDtlsParam;
|
||||||
import com.njcn.gather.err.pojo.param.PqErrSysParam;
|
import com.njcn.gather.err.pojo.param.PqErrSysParam;
|
||||||
import com.njcn.gather.err.pojo.po.PqErrSys;
|
import com.njcn.gather.err.pojo.po.PqErrSys;
|
||||||
import com.njcn.gather.err.pojo.po.PqErrSysDtls;
|
import com.njcn.gather.err.pojo.po.PqErrSysDtls;
|
||||||
import com.njcn.gather.err.pojo.vo.PqErrSysDtlsVO;
|
import com.njcn.gather.err.pojo.vo.PqErrSysDtlsVO;
|
||||||
import com.njcn.gather.err.service.IPqErrSysDtlsService;
|
import com.njcn.gather.err.service.IPqErrSysDtlsService;
|
||||||
import com.njcn.gather.err.service.IPqErrSysService;
|
import com.njcn.gather.err.service.IPqErrSysService;
|
||||||
import com.njcn.gather.device.pojo.enums.DevResponseEnum;
|
import com.njcn.gather.pojo.enums.DetectionResponseEnum;
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictData;
|
import com.njcn.gather.system.dictionary.pojo.po.DictData;
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictTree;
|
import com.njcn.gather.system.dictionary.pojo.po.DictTree;
|
||||||
import com.njcn.gather.system.dictionary.service.IDictDataService;
|
import com.njcn.gather.system.dictionary.service.IDictDataService;
|
||||||
@@ -65,8 +66,9 @@ public class PqErrSysServiceImpl extends ServiceImpl<PqErrSysMapper, PqErrSys> i
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean addPqErrSys(PqErrSysParam param) {
|
public boolean addPqErrSys(PqErrSysParam param) {
|
||||||
|
this.checkRepeat(param, false);
|
||||||
PqErrSys pqErrSys = new PqErrSys();
|
PqErrSys pqErrSys = new PqErrSys();
|
||||||
BeanUtils.copyProperties(param, pqErrSys);
|
BeanUtils.copyProperties(param, pqErrSys);
|
||||||
String id = UUID.randomUUID().toString().replaceAll("-", "");
|
String id = UUID.randomUUID().toString().replaceAll("-", "");
|
||||||
@@ -79,9 +81,11 @@ public class PqErrSysServiceImpl extends ServiceImpl<PqErrSysMapper, PqErrSys> i
|
|||||||
return result1 && result2;
|
return result1 && result2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updatePqErrSys(PqErrSysParam.UpdateParam param) {
|
public boolean updatePqErrSys(PqErrSysParam.UpdateParam param) {
|
||||||
|
this.checkRepeat(param, true);
|
||||||
PqErrSys pqErrSys = new PqErrSys();
|
PqErrSys pqErrSys = new PqErrSys();
|
||||||
BeanUtils.copyProperties(param, pqErrSys);
|
BeanUtils.copyProperties(param, pqErrSys);
|
||||||
pqErrSys.setName(generateErrSysName(param));
|
pqErrSys.setName(generateErrSysName(param));
|
||||||
@@ -92,11 +96,11 @@ public class PqErrSysServiceImpl extends ServiceImpl<PqErrSysMapper, PqErrSys> i
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deletePqErrSys(List<String> ids) {
|
public boolean deletePqErrSys(List<String> ids) {
|
||||||
Integer count = this.baseMapper.getCountBoundByIds(ids);
|
Integer count = this.baseMapper.getCountBoundByIds(ids);
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
throw new BusinessException(ErrResponseEnum.ERR_SYS_BOUND_NOT_DELETE);
|
throw new BusinessException(DetectionResponseEnum.ERR_SYS_BOUND_NOT_DELETE);
|
||||||
}
|
}
|
||||||
pqErrSysDtlsService.deletePqErrSysDtlsByPqErrSysId(ids);
|
pqErrSysDtlsService.deletePqErrSysDtlsByPqErrSysId(ids);
|
||||||
this.lambdaUpdate().in(PqErrSys::getId, ids).set(PqErrSys::getState, DataStateEnum.DELETED.getCode()).update();
|
this.lambdaUpdate().in(PqErrSys::getId, ids).set(PqErrSys::getState, DataStateEnum.DELETED.getCode()).update();
|
||||||
@@ -122,7 +126,9 @@ public class PqErrSysServiceImpl extends ServiceImpl<PqErrSysMapper, PqErrSys> i
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<Map<String, Object>> listAllPqErrSys() {
|
public List<Map<String, Object>> listAllPqErrSys() {
|
||||||
List<PqErrSys> pqErrSysList = this.lambdaQuery().eq(PqErrSys::getState, DataStateEnum.ENABLE.getCode()).list();
|
List<PqErrSys> pqErrSysList = this.lambdaQuery()
|
||||||
|
.eq(PqErrSys::getEnable,DataStateEnum.ENABLE.getCode())
|
||||||
|
.eq(PqErrSys::getState, DataStateEnum.ENABLE.getCode()).list();
|
||||||
List<Map<String, Object>> result = pqErrSysList.stream().map(pqErrSys -> {
|
List<Map<String, Object>> result = pqErrSysList.stream().map(pqErrSys -> {
|
||||||
Map<String, Object> map = new HashMap<>();
|
Map<String, Object> map = new HashMap<>();
|
||||||
map.put("id", pqErrSys.getId());
|
map.put("id", pqErrSys.getId());
|
||||||
@@ -186,29 +192,41 @@ public class PqErrSysServiceImpl extends ServiceImpl<PqErrSysMapper, PqErrSys> i
|
|||||||
if (ObjectUtil.isNotNull(devLevelDictData)) {
|
if (ObjectUtil.isNotNull(devLevelDictData)) {
|
||||||
return param.getStandardName() + "-" + param.getStandardTime() + "-" + devLevelDictData.getName();
|
return param.getStandardName() + "-" + param.getStandardTime() + "-" + devLevelDictData.getName();
|
||||||
}
|
}
|
||||||
throw new BusinessException(DevResponseEnum.PQ_ERRSYS_GEN_NAME_ERROR);
|
throw new BusinessException(DetectionResponseEnum.PQ_ERRSYS_GEN_NAME_ERROR);
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Override
|
@Override
|
||||||
// public boolean copyPqErrSys(String id) {
|
public boolean copyPqErrSys(String id) {
|
||||||
// PqErrSys pqErrSys = this.getPqErrSysById(id);
|
PqErrSys pqErrSys = this.getPqErrSysById(id);
|
||||||
// pqErrSys.setId(UUID.randomUUID().toString().replaceAll("-", ""));
|
pqErrSys.setId(UUID.randomUUID().toString().replaceAll("-", ""));
|
||||||
// pqErrSys.setName(pqErrSys.getName() + "_副本");
|
pqErrSys.setName(pqErrSys.getName() + "_copy");
|
||||||
// pqErrSys.setStandardTime(LocalDate.of(pqErrSys.getStandardTime().getYear(), 1, 1));
|
pqErrSys.setStandardName(pqErrSys.getStandardName() + "_copy");
|
||||||
// pqErrSys.getPqErrSysDtlsList().forEach(pqErrSysDtls -> pqErrSysDtls.setId(UUID.randomUUID().toString().replaceAll("-", "")));
|
pqErrSys.setStandardTime(LocalDate.of(pqErrSys.getStandardTime().getYear(), 1, 1));
|
||||||
// return this.save(pqErrSys);
|
List<PqErrSysDtlsParam> pqErrSysDtlsParams = BeanUtil.copyToList(pqErrSys.getPqErrSysDtlsList(), PqErrSysDtlsParam.class);
|
||||||
// }
|
pqErrSysDtlsService.addPqErrSysDtls(pqErrSys.getId(), pqErrSysDtlsParams);
|
||||||
|
return this.save(pqErrSys);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 生成误差体系名称(标准号+年份+设备等级)
|
* 检查重复
|
||||||
*
|
*
|
||||||
* @return 检测源名称
|
* @param param 检测参数
|
||||||
|
* @param isExcludeSelf 是否排除自己
|
||||||
*/
|
*/
|
||||||
private String generatePqSourceName(PqErrSysParam param) {
|
private void checkRepeat(PqErrSysParam param, boolean isExcludeSelf) {
|
||||||
DictData devLevel = dictDataService.getDictDataById(param.getDevLevel());
|
QueryWrapper<PqErrSys> wrapper = new QueryWrapper<>();
|
||||||
if (ObjectUtils.allNotNull(param.getStandardName(), param.getStandardTime(), devLevel)) {
|
wrapper.eq("Standard_Name", param.getStandardName())
|
||||||
return param.getStandardName() + "-" + param.getStandardTime() + "-" + devLevel.getName();
|
.eq("Standard_Time",param.getStandardTime()+"-01-01")
|
||||||
|
.eq("Dev_Level",param.getDevLevel())
|
||||||
|
.eq("state", DataStateEnum.ENABLE.getCode());
|
||||||
|
if (isExcludeSelf) {
|
||||||
|
if(param instanceof PqErrSysParam.UpdateParam){
|
||||||
|
wrapper.ne("Id", ((PqErrSysParam.UpdateParam) param).getId());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int count = this.count(wrapper);
|
||||||
|
if (count > 0) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.ERR_SYS_REPEAT);
|
||||||
}
|
}
|
||||||
throw new BusinessException(DevResponseEnum.ERR_SOURCE_GEN_NAME_ERROR);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,8 +11,6 @@ import com.njcn.common.utils.LogUtil;
|
|||||||
import com.njcn.gather.icd.pojo.param.PqIcdPathParam;
|
import com.njcn.gather.icd.pojo.param.PqIcdPathParam;
|
||||||
import com.njcn.gather.icd.pojo.po.PqIcdPath;
|
import com.njcn.gather.icd.pojo.po.PqIcdPath;
|
||||||
import com.njcn.gather.icd.service.IPqIcdPathService;
|
import com.njcn.gather.icd.service.IPqIcdPathService;
|
||||||
import com.njcn.gather.type.pojo.param.DevTypeParam;
|
|
||||||
import com.njcn.gather.type.pojo.po.DevType;
|
|
||||||
import com.njcn.web.controller.BaseController;
|
import com.njcn.web.controller.BaseController;
|
||||||
import com.njcn.web.utils.HttpResultUtil;
|
import com.njcn.web.utils.HttpResultUtil;
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
@@ -27,16 +25,15 @@ import java.util.List;
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author caozehui
|
* @author caozehui
|
||||||
* @date 2025-02-10
|
* @date 2025-02-10
|
||||||
*/
|
*/
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@Api(tags="icd管理")
|
@Api(tags = "icd管理")
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/icd")
|
@RequestMapping("/icd")
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class PqIcdPathController extends BaseController{
|
public class PqIcdPathController extends BaseController {
|
||||||
private final IPqIcdPathService pqIcdPathService;
|
private final IPqIcdPathService pqIcdPathService;
|
||||||
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||||
@@ -63,15 +60,15 @@ public class PqIcdPathController extends BaseController{
|
|||||||
@PostMapping("/add")
|
@PostMapping("/add")
|
||||||
@ApiOperation("新增icd")
|
@ApiOperation("新增icd")
|
||||||
@ApiImplicitParam(name = "param", value = "icd新增参数", required = true)
|
@ApiImplicitParam(name = "param", value = "icd新增参数", required = true)
|
||||||
public HttpResult<String> add(@RequestBody @Validated PqIcdPathParam param) {
|
public HttpResult<Boolean> add(@RequestBody @Validated PqIcdPathParam param) {
|
||||||
String methodDescribe = getMethodDescribe("add");
|
String methodDescribe = getMethodDescribe("add");
|
||||||
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
||||||
|
|
||||||
boolean result = pqIcdPathService.addIcd(param);
|
boolean result = pqIcdPathService.addIcd(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,15 +76,15 @@ public class PqIcdPathController extends BaseController{
|
|||||||
@PostMapping("/update")
|
@PostMapping("/update")
|
||||||
@ApiOperation("修改icd")
|
@ApiOperation("修改icd")
|
||||||
@ApiImplicitParam(name = "param", value = "icd修改参数", required = true)
|
@ApiImplicitParam(name = "param", value = "icd修改参数", required = true)
|
||||||
public HttpResult<String> update(@RequestBody @Validated PqIcdPathParam.UpdateParam param) {
|
public HttpResult<Boolean> update(@RequestBody @Validated PqIcdPathParam.UpdateParam param) {
|
||||||
String methodDescribe = getMethodDescribe("update");
|
String methodDescribe = getMethodDescribe("update");
|
||||||
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, param);
|
||||||
|
|
||||||
boolean result = pqIcdPathService.updateIcd(param);
|
boolean result = pqIcdPathService.updateIcd(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,14 +92,14 @@ public class PqIcdPathController extends BaseController{
|
|||||||
@PostMapping("/delete")
|
@PostMapping("/delete")
|
||||||
@ApiOperation("删除icd")
|
@ApiOperation("删除icd")
|
||||||
@ApiImplicitParam(name = "ids", value = "icd的id列表", required = true)
|
@ApiImplicitParam(name = "ids", value = "icd的id列表", required = true)
|
||||||
public HttpResult<String> delete(@RequestBody List<String> ids) {
|
public HttpResult<Boolean> delete(@RequestBody List<String> ids) {
|
||||||
String methodDescribe = getMethodDescribe("delete");
|
String methodDescribe = getMethodDescribe("delete");
|
||||||
LogUtil.njcnDebug(log, "{},删除数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
LogUtil.njcnDebug(log, "{},删除数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
||||||
boolean result = pqIcdPathService.deleteIcd(ids);
|
boolean result = pqIcdPathService.deleteIcd(ids);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
package com.njcn.gather.icd.pojo.constant;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-02-11
|
|
||||||
*/
|
|
||||||
public interface PqIcdPathValidMessage {
|
|
||||||
String ID_NOT_BLANK = "id不能为空,请检查id参数";
|
|
||||||
String ID_FORMAT_ERROR = "id格式错误,请检查id参数";
|
|
||||||
String NAME_NOT_BLANK = "名称不能为空";
|
|
||||||
String PATH_NOT_BLANK = "icd存储路径不能为空";
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
package com.njcn.gather.icd.pojo.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-02-11
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
public enum IcdPathResponseEnum {
|
|
||||||
|
|
||||||
ICD_PATH_NAME_REPEAT("A004007", "icd名称重复");
|
|
||||||
|
|
||||||
private final String code;
|
|
||||||
private final String message;
|
|
||||||
|
|
||||||
IcdPathResponseEnum(String code, String message) {
|
|
||||||
this.message = message;
|
|
||||||
this.code = code;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
package com.njcn.gather.icd.pojo.param;
|
package com.njcn.gather.icd.pojo.param;
|
||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.icd.pojo.constant.PqIcdPathValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import com.njcn.gather.type.pojo.constant.DevTypeValidMessage;
|
|
||||||
import com.njcn.web.pojo.param.BaseParam;
|
import com.njcn.web.pojo.param.BaseParam;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
@@ -18,11 +17,13 @@ import javax.validation.constraints.Pattern;
|
|||||||
@Data
|
@Data
|
||||||
public class PqIcdPathParam {
|
public class PqIcdPathParam {
|
||||||
@ApiModelProperty(value = "名称", required = true)
|
@ApiModelProperty(value = "名称", required = true)
|
||||||
@NotBlank(message = PqIcdPathValidMessage.NAME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.NAME_NOT_BLANK)
|
||||||
|
@Pattern(regexp = PatternRegex.ICD_NAME_REGEX, message = DetectionValidMessage.ICD_NAME_FORMAT_ERROR)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@ApiModelProperty(value = "存储路径", required = true)
|
@ApiModelProperty(value = "存储路径", required = true)
|
||||||
@NotBlank(message = PqIcdPathValidMessage.PATH_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ICD_PATH_NOT_BLANK)
|
||||||
|
@Pattern(regexp = PatternRegex.ICD_PATH_REGEX, message = DetectionValidMessage.ICD_PATH_FORMAT_ERROR)
|
||||||
private String path;
|
private String path;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -43,8 +44,8 @@ public class PqIcdPathParam {
|
|||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
public static class UpdateParam extends PqIcdPathParam {
|
public static class UpdateParam extends PqIcdPathParam {
|
||||||
@ApiModelProperty(value = "id", required = true)
|
@ApiModelProperty(value = "id", required = true)
|
||||||
@NotBlank(message = PqIcdPathValidMessage.ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = PqIcdPathValidMessage.ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ID_FORMAT_ERROR)
|
||||||
private String id;
|
private String id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,11 +7,10 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|||||||
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
||||||
import com.njcn.common.pojo.exception.BusinessException;
|
import com.njcn.common.pojo.exception.BusinessException;
|
||||||
import com.njcn.gather.icd.mapper.PqIcdPathMapper;
|
import com.njcn.gather.icd.mapper.PqIcdPathMapper;
|
||||||
import com.njcn.gather.icd.pojo.enums.IcdPathResponseEnum;
|
|
||||||
import com.njcn.gather.icd.pojo.param.PqIcdPathParam;
|
import com.njcn.gather.icd.pojo.param.PqIcdPathParam;
|
||||||
import com.njcn.gather.icd.pojo.po.PqIcdPath;
|
import com.njcn.gather.icd.pojo.po.PqIcdPath;
|
||||||
import com.njcn.gather.icd.service.IPqIcdPathService;
|
import com.njcn.gather.icd.service.IPqIcdPathService;
|
||||||
import com.njcn.gather.type.pojo.po.DevType;
|
import com.njcn.gather.pojo.enums.DetectionResponseEnum;
|
||||||
import com.njcn.web.factory.PageFactory;
|
import com.njcn.web.factory.PageFactory;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
@@ -46,7 +45,7 @@ public class PqIcdPathServiceImpl extends ServiceImpl<PqIcdPathMapper, PqIcdPath
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional
|
||||||
public boolean addIcd(PqIcdPathParam param) {
|
public boolean addIcd(PqIcdPathParam param) {
|
||||||
this.checkRepeat(param, false);
|
this.checkRepeat(param, false);
|
||||||
PqIcdPath pqIcdPath = new PqIcdPath();
|
PqIcdPath pqIcdPath = new PqIcdPath();
|
||||||
@@ -56,7 +55,7 @@ public class PqIcdPathServiceImpl extends ServiceImpl<PqIcdPathMapper, PqIcdPath
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updateIcd(PqIcdPathParam.UpdateParam param) {
|
public boolean updateIcd(PqIcdPathParam.UpdateParam param) {
|
||||||
this.checkRepeat(param, true);
|
this.checkRepeat(param, true);
|
||||||
PqIcdPath pqIcdPath = new PqIcdPath();
|
PqIcdPath pqIcdPath = new PqIcdPath();
|
||||||
@@ -65,7 +64,7 @@ public class PqIcdPathServiceImpl extends ServiceImpl<PqIcdPathMapper, PqIcdPath
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deleteIcd(List<String> ids) {
|
public boolean deleteIcd(List<String> ids) {
|
||||||
return this.lambdaUpdate().in(PqIcdPath::getId, ids).set(PqIcdPath::getState, DataStateEnum.DELETED.getCode()).update();
|
return this.lambdaUpdate().in(PqIcdPath::getId, ids).set(PqIcdPath::getState, DataStateEnum.DELETED.getCode()).update();
|
||||||
}
|
}
|
||||||
@@ -81,7 +80,7 @@ public class PqIcdPathServiceImpl extends ServiceImpl<PqIcdPathMapper, PqIcdPath
|
|||||||
}
|
}
|
||||||
int count = this.count(wrapper);
|
int count = this.count(wrapper);
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
throw new BusinessException(IcdPathResponseEnum.ICD_PATH_NAME_REPEAT);
|
throw new BusinessException(DetectionResponseEnum.ICD_PATH_NAME_REPEAT);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
package com.njcn.gather.monitor.pojo.param;
|
package com.njcn.gather.monitor.pojo.param;
|
||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotBlank;
|
||||||
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.NotNull;
|
||||||
@@ -21,24 +20,24 @@ public class PqMonitorParam {
|
|||||||
private String code;
|
private String code;
|
||||||
|
|
||||||
@ApiModelProperty(value = "所属母线")
|
@ApiModelProperty(value = "所属母线")
|
||||||
@NotBlank(message = DevValidMessage.BELONG_LINE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.BELONG_LINE_NOT_BLANK)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@ApiModelProperty(value = "监测点序号")
|
@ApiModelProperty(value = "监测点序号")
|
||||||
@NotNull(message = DevValidMessage.MONITOR_NUM_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.MONITOR_NUM_NOT_NULL)
|
||||||
private Integer num;
|
private Integer num;
|
||||||
|
|
||||||
@ApiModelProperty(value = "PT变比")
|
@ApiModelProperty(value = "PT变比")
|
||||||
@NotNull(message = DevValidMessage.PT_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.PT_NOT_NULL)
|
||||||
private Float pt;
|
private Float pt;
|
||||||
|
|
||||||
@ApiModelProperty(value = "CT变比")
|
@ApiModelProperty(value = "CT变比")
|
||||||
@NotNull(message = DevValidMessage.CT_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.CT_NOT_NULL)
|
||||||
private Float ct;
|
private Float ct;
|
||||||
|
|
||||||
@ApiModelProperty(value = "接线方式")
|
@ApiModelProperty(value = "接线方式")
|
||||||
@NotBlank(message = DevValidMessage.WIRING_TYPE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.WIRING_TYPE_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.WIRING_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.WIRING_TYPE_FORMAT_ERROR)
|
||||||
private String ptType;
|
private String ptType;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package com.njcn.gather.monitor.pojo.vo;
|
|||||||
|
|
||||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
@@ -18,24 +18,24 @@ import javax.validation.constraints.Pattern;
|
|||||||
public class PqMonitorExcel {
|
public class PqMonitorExcel {
|
||||||
|
|
||||||
@Excel(name = "监测点序号", width = 20, orderNum = "1")
|
@Excel(name = "监测点序号", width = 20, orderNum = "1")
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.MONITOR_NUM_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.MONITOR_NUM_FORMAT_ERROR)
|
||||||
private Integer num;
|
private Integer num;
|
||||||
|
|
||||||
@Excel(name = "所属母线", width = 20, orderNum = "2")
|
@Excel(name = "所属母线", width = 20, orderNum = "2")
|
||||||
@NotBlank(message = DevValidMessage.BELONG_LINE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.BELONG_LINE_NOT_BLANK)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@Excel(name = "PT变比", width = 20, orderNum = "3")
|
@Excel(name = "PT变比", width = 20, orderNum = "3")
|
||||||
@NotNull(message = DevValidMessage.PT_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.PT_NOT_NULL)
|
||||||
private Float pt;
|
private Float pt;
|
||||||
|
|
||||||
@Excel(name = "CT变比", width = 20, orderNum = "4")
|
@Excel(name = "CT变比", width = 20, orderNum = "4")
|
||||||
@NotNull(message = DevValidMessage.CT_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.CT_NOT_NULL)
|
||||||
private Float ct;
|
private Float ct;
|
||||||
|
|
||||||
@Excel(name = "接线方式", width = 20, orderNum = "5")
|
@Excel(name = "接线方式", width = 20, orderNum = "5")
|
||||||
@NotBlank(message = DevValidMessage.WIRING_TYPE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.WIRING_TYPE_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.WIRING_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.WIRING_TYPE_FORMAT_ERROR)
|
||||||
private String ptType;
|
private String ptType;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ public class PqMonitorServiceImpl extends ServiceImpl<PqMonitorMapper, PqMonitor
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean addPqMonitorByDevId(String devId, List<PqMonitorParam> pqMonitorParamList) {
|
public boolean addPqMonitorByDevId(String devId, List<PqMonitorParam> pqMonitorParamList) {
|
||||||
List<PqMonitor> pqMonitorList = BeanUtil.copyToList(pqMonitorParamList, PqMonitor.class);
|
List<PqMonitor> pqMonitorList = BeanUtil.copyToList(pqMonitorParamList, PqMonitor.class);
|
||||||
pqMonitorList.forEach(pqMonitor -> pqMonitor.setDevId(devId));
|
pqMonitorList.forEach(pqMonitor -> pqMonitor.setDevId(devId));
|
||||||
@@ -41,7 +41,7 @@ public class PqMonitorServiceImpl extends ServiceImpl<PqMonitorMapper, PqMonitor
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deletePqMonitorByDevId(String devId) {
|
public boolean deletePqMonitorByDevId(String devId) {
|
||||||
QueryWrapper<PqMonitor> wrapper = new QueryWrapper<>();
|
QueryWrapper<PqMonitor> wrapper = new QueryWrapper<>();
|
||||||
wrapper.eq("pq_monitor.Dev_Id", devId);
|
wrapper.eq("pq_monitor.Dev_Id", devId);
|
||||||
@@ -49,7 +49,7 @@ public class PqMonitorServiceImpl extends ServiceImpl<PqMonitorMapper, PqMonitor
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updatePqMonitorByDevId(String devId, List<PqMonitorParam> paramList) {
|
public boolean updatePqMonitorByDevId(String devId, List<PqMonitorParam> paramList) {
|
||||||
// 先删除原有数据
|
// 先删除原有数据
|
||||||
this.deletePqMonitorByDevId(devId);
|
this.deletePqMonitorByDevId(devId);
|
||||||
|
|||||||
@@ -1,9 +1,5 @@
|
|||||||
package com.njcn.gather.plan.controller;
|
package com.njcn.gather.plan.controller;
|
||||||
|
|
||||||
import cn.afterturn.easypoi.excel.ExcelImportUtil;
|
|
||||||
import cn.afterturn.easypoi.excel.entity.ImportParams;
|
|
||||||
import cn.afterturn.easypoi.excel.entity.result.ExcelImportResult;
|
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import com.njcn.common.pojo.annotation.OperateInfo;
|
import com.njcn.common.pojo.annotation.OperateInfo;
|
||||||
@@ -13,24 +9,18 @@ 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.common.pojo.response.HttpResult;
|
import com.njcn.common.pojo.response.HttpResult;
|
||||||
import com.njcn.common.utils.LogUtil;
|
import com.njcn.common.utils.LogUtil;
|
||||||
import com.njcn.gather.device.pojo.enums.DevResponseEnum;
|
|
||||||
import com.njcn.gather.device.pojo.vo.CNDevExcel;
|
|
||||||
import com.njcn.gather.plan.pojo.param.AdPlanParam;
|
import com.njcn.gather.plan.pojo.param.AdPlanParam;
|
||||||
import com.njcn.gather.plan.pojo.vo.AdPlanExcel;
|
|
||||||
import com.njcn.gather.plan.pojo.vo.AdPlanVO;
|
import com.njcn.gather.plan.pojo.vo.AdPlanVO;
|
||||||
import com.njcn.gather.plan.service.IAdPlanService;
|
import com.njcn.gather.plan.service.IAdPlanService;
|
||||||
import com.njcn.web.controller.BaseController;
|
import com.njcn.web.controller.BaseController;
|
||||||
import com.njcn.web.utils.ExcelUtil;
|
|
||||||
import com.njcn.web.utils.FileUtil;
|
import com.njcn.web.utils.FileUtil;
|
||||||
import com.njcn.web.utils.HttpResultUtil;
|
import com.njcn.web.utils.HttpResultUtil;
|
||||||
import com.njcn.web.utils.PoiUtil;
|
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
import io.swagger.annotations.ApiImplicitParam;
|
import io.swagger.annotations.ApiImplicitParam;
|
||||||
import io.swagger.annotations.ApiImplicitParams;
|
import io.swagger.annotations.ApiImplicitParams;
|
||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.poi.ss.usermodel.Workbook;
|
|
||||||
import org.springframework.validation.annotation.Validated;
|
import org.springframework.validation.annotation.Validated;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
@@ -68,14 +58,14 @@ public class AdPlanController extends BaseController {
|
|||||||
@PostMapping("/add")
|
@PostMapping("/add")
|
||||||
@ApiOperation("新增检测计划")
|
@ApiOperation("新增检测计划")
|
||||||
@ApiImplicitParam(name = "param", value = "检测计划", required = true)
|
@ApiImplicitParam(name = "param", value = "检测计划", required = true)
|
||||||
public HttpResult<Object> add(@RequestBody @Validated AdPlanParam param) {
|
public HttpResult<Boolean> add(@RequestBody @Validated AdPlanParam param) {
|
||||||
String methodDescribe = getMethodDescribe("add");
|
String methodDescribe = getMethodDescribe("add");
|
||||||
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
||||||
boolean result = adPlanService.addAdPlan(param);
|
boolean result = adPlanService.addAdPlan(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -83,14 +73,14 @@ public class AdPlanController extends BaseController {
|
|||||||
@PostMapping("/update")
|
@PostMapping("/update")
|
||||||
@ApiOperation("修改检测计划")
|
@ApiOperation("修改检测计划")
|
||||||
@ApiImplicitParam(name = "updateParam", value = "检测计划", required = true)
|
@ApiImplicitParam(name = "updateParam", value = "检测计划", required = true)
|
||||||
public HttpResult<Object> update(@RequestBody @Validated AdPlanParam.UpdateParam updateParam) {
|
public HttpResult<Boolean> update(@RequestBody @Validated AdPlanParam.UpdateParam updateParam) {
|
||||||
String methodDescribe = getMethodDescribe("update");
|
String methodDescribe = getMethodDescribe("update");
|
||||||
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, updateParam);
|
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, updateParam);
|
||||||
boolean result = adPlanService.updateAdPlan(updateParam);
|
boolean result = adPlanService.updateAdPlan(updateParam);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -98,14 +88,14 @@ public class AdPlanController extends BaseController {
|
|||||||
@PostMapping("/delete")
|
@PostMapping("/delete")
|
||||||
@ApiOperation("删除检测计划")
|
@ApiOperation("删除检测计划")
|
||||||
@ApiImplicitParam(name = "ids", value = "检测计划id", required = true)
|
@ApiImplicitParam(name = "ids", value = "检测计划id", required = true)
|
||||||
public HttpResult<Object> delete(@RequestBody List<String> ids) {
|
public HttpResult<Boolean> delete(@RequestBody List<String> ids) {
|
||||||
String methodDescribe = getMethodDescribe("delete");
|
String methodDescribe = getMethodDescribe("delete");
|
||||||
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
||||||
boolean result = adPlanService.deleteAdPlan(ids);
|
boolean result = adPlanService.deleteAdPlan(ids);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -121,43 +111,32 @@ public class AdPlanController extends BaseController {
|
|||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 二楼检测计划导出
|
|
||||||
*
|
|
||||||
* @param queryParam
|
|
||||||
*/
|
|
||||||
@OperateInfo(operateType = OperateType.DOWNLOAD)
|
@OperateInfo(operateType = OperateType.DOWNLOAD)
|
||||||
@PostMapping("/exportCNPlan")
|
@PostMapping("/export")
|
||||||
@ApiOperation("二楼导出检测计划")
|
@ApiOperation("导出检测计划")
|
||||||
@ApiImplicitParam(name = "queryParam", value = "查询参数", required = true)
|
@ApiImplicitParam(name = "queryParam", value = "查询参数", required = true)
|
||||||
public void exportCNPlan(@RequestBody @Validated AdPlanParam.QueryParam queryParam) {
|
public void exportPlan(@RequestBody @Validated AdPlanParam.QueryParam queryParam) {
|
||||||
String methodDescribe = getMethodDescribe("export");
|
String methodDescribe = getMethodDescribe("exportPlan");
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, queryParam);
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, queryParam);
|
||||||
|
|
||||||
adPlanService.exportCNPlan(queryParam);
|
adPlanService.exportPlan(queryParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 二楼检测计划导出模板
|
|
||||||
*/
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DOWNLOAD)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DOWNLOAD)
|
||||||
@PostMapping("/downloadCNPlanTemplate")
|
@PostMapping("/downloadTemplate")
|
||||||
@ApiOperation("下载二楼检测计划导出模板")
|
@ApiOperation("下载检测计划导出模板")
|
||||||
public void downloadCNPlanTemplate() {
|
public void downloadTemplate() {
|
||||||
adPlanService.downloadCNPlanTemplate();
|
adPlanService.downloadTemplate();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 二楼检测计划导入
|
|
||||||
*/
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPLOAD)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPLOAD)
|
||||||
@PostMapping(value = "/importCNPlan")
|
@PostMapping(value = "/import")
|
||||||
@ApiOperation("二楼导入检测计划数据")
|
@ApiOperation("导入检测计划数据")
|
||||||
@ApiImplicitParams({
|
@ApiImplicitParams({
|
||||||
@ApiImplicitParam(name = "file", value = "检测计划数据文件", required = true),
|
@ApiImplicitParam(name = "file", value = "检测计划数据文件", required = true),
|
||||||
@ApiImplicitParam(name = "pattern", value = "模式Id", required = true)
|
@ApiImplicitParam(name = "pattern", value = "模式Id", required = true)
|
||||||
})
|
})
|
||||||
public HttpResult<String> importCNPlan(@RequestParam("file") MultipartFile file, @RequestParam("patternId") String patternId, HttpServletResponse response) {
|
public HttpResult<Object> importPlan(@RequestParam("file") MultipartFile file, @RequestParam("patternId") String patternId, HttpServletResponse response) {
|
||||||
String methodDescribe = getMethodDescribe("importCNPlan");
|
String methodDescribe = getMethodDescribe("importCNPlan");
|
||||||
LogUtil.njcnDebug(log, "{},上传文件为:{}", methodDescribe, file.getOriginalFilename());
|
LogUtil.njcnDebug(log, "{},上传文件为:{}", methodDescribe, file.getOriginalFilename());
|
||||||
|
|
||||||
@@ -165,86 +144,10 @@ public class AdPlanController extends BaseController {
|
|||||||
if (!fileType) {
|
if (!fileType) {
|
||||||
throw new BusinessException(CommonResponseEnum.FILE_XLSX_ERROR);
|
throw new BusinessException(CommonResponseEnum.FILE_XLSX_ERROR);
|
||||||
}
|
}
|
||||||
|
adPlanService.importPlan(file, patternId, response);
|
||||||
ImportParams params = new ImportParams();
|
|
||||||
params.setStartSheetIndex(0);
|
|
||||||
params.setSheetNum(1);
|
|
||||||
params.setHeadRows(2);
|
|
||||||
params.setNeedVerify(true);
|
|
||||||
|
|
||||||
List<AdPlanExcel> planExcelList;
|
|
||||||
try {
|
|
||||||
ExcelImportResult<AdPlanExcel> excelImportResult = ExcelImportUtil.importExcelMore(file.getInputStream(), AdPlanExcel.class, params);
|
|
||||||
if (excelImportResult.isVerifyFail()) {
|
|
||||||
// 此处前端要做特殊处理,具体可以参考技术监督的数据导入
|
|
||||||
Workbook failWorkbook = excelImportResult.getFailWorkbook();
|
|
||||||
PoiUtil.exportFileByWorkbook(failWorkbook, "非法检测计划数据.xlsx", response);
|
|
||||||
// throw new BusinessException(DevResponseEnum.IMPORT_DATA_FORMAT_FAIL);
|
|
||||||
return null;
|
|
||||||
} else {
|
|
||||||
planExcelList = excelImportResult.getList();
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
throw new BusinessException(DevResponseEnum.IMPORT_DATA_FAIL);
|
|
||||||
}
|
|
||||||
if (ObjectUtil.isNotEmpty(planExcelList)) {
|
|
||||||
adPlanService.importCNPlan(planExcelList, patternId);
|
|
||||||
}
|
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
|
||||||
// @OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPLOAD)
|
|
||||||
// @PostMapping(value = "/import")
|
|
||||||
// @ApiOperation("批量导入检测计划数据")
|
|
||||||
// @ApiImplicitParams({
|
|
||||||
// @ApiImplicitParam(name = "file", value = "检测计划数据文件", required = true),
|
|
||||||
// @ApiImplicitParam(name = "pattern", value = "模式Id", required = true)
|
|
||||||
// })
|
|
||||||
// public HttpResult<String> importData(@RequestParam("file") MultipartFile file, @RequestParam("patternId") String patternId, HttpServletResponse response) {
|
|
||||||
// String methodDescribe = getMethodDescribe("importData");
|
|
||||||
// LogUtil.njcnDebug(log, "{},上传文件为:{}, 模式Id为:{}", methodDescribe, file.getOriginalFilename(), patternId);
|
|
||||||
//
|
|
||||||
// boolean fileType = FileUtil.judgeFileIsExcel(file.getOriginalFilename());
|
|
||||||
// if (!fileType) {
|
|
||||||
// throw new BusinessException(CommonResponseEnum.FILE_XLSX_ERROR);
|
|
||||||
// }
|
|
||||||
// ImportParams params = new ImportParams();
|
|
||||||
// params.setHeadRows(2);
|
|
||||||
// params.setNeedVerify(true);
|
|
||||||
// params.setStartSheetIndex(0);
|
|
||||||
// params.setSheetNum(1);
|
|
||||||
//
|
|
||||||
// List<AdPlanExcel.ImportData> adPlanExcelList = null;
|
|
||||||
// try {
|
|
||||||
// ExcelImportResult<AdPlanExcel.ImportData> adPlanExcelResult = ExcelImportUtil.importExcelMore(file.getInputStream(), AdPlanExcel.ImportData.class, params);
|
|
||||||
// if (adPlanExcelResult.isVerifyFail()) {
|
|
||||||
// // 此处前端要做特殊处理,具体可以参考技术监督的数据导入
|
|
||||||
// PoiUtil.exportFileByWorkbook(adPlanExcelResult.getFailWorkbook(), "非法检测计划数据.xlsx", response);
|
|
||||||
// return null;
|
|
||||||
// } else {
|
|
||||||
// adPlanExcelList = adPlanExcelResult.getList();
|
|
||||||
// }
|
|
||||||
// } catch (Exception e) {
|
|
||||||
// throw new BusinessException(DevResponseEnum.IMPORT_DATA_FAIL, e.getMessage());
|
|
||||||
// }
|
|
||||||
// if (ObjectUtil.isNotEmpty(adPlanExcelList)) {
|
|
||||||
// adPlanService.importData(patternId, adPlanExcelList);
|
|
||||||
// }
|
|
||||||
// return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// @OperateInfo
|
|
||||||
// @GetMapping("/getPieData")
|
|
||||||
// @ApiOperation("获取饼状图数据")
|
|
||||||
// @ApiImplicitParam(name = "id", value = "检测计划id", required = true)
|
|
||||||
// public HttpResult<List<List<Map<String, Object>>>> getPieData(@RequestParam("planId") String planId) {
|
|
||||||
// String methodDescribe = getMethodDescribe("getPieData");
|
|
||||||
// LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, planId);
|
|
||||||
// List<List<Map<String, Object>>> result = pqDevService.getPieData(planId);
|
|
||||||
// return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
|
||||||
// }
|
|
||||||
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||||
@PostMapping("/getBigTestItem")
|
@PostMapping("/getBigTestItem")
|
||||||
@ApiOperation("获取检测大项数据")
|
@ApiOperation("获取检测大项数据")
|
||||||
@@ -252,7 +155,7 @@ public class AdPlanController extends BaseController {
|
|||||||
public HttpResult<List<Map<String, String>>> getBigTestItem(@RequestBody AdPlanParam.CheckParam checkParam) {
|
public HttpResult<List<Map<String, String>>> getBigTestItem(@RequestBody AdPlanParam.CheckParam checkParam) {
|
||||||
String methodDescribe = getMethodDescribe("getBigTestItem");
|
String methodDescribe = getMethodDescribe("getBigTestItem");
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, checkParam);
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, checkParam);
|
||||||
List<Map<String, String>> result = adPlanService.getBigTestItem(checkParam.getReCheckType(),checkParam.getPlanId(),checkParam.getDevId());
|
List<Map<String, String>> result = adPlanService.getBigTestItem(checkParam.getReCheckType(), checkParam.getPlanId(), checkParam.getDevId());
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ package com.njcn.gather.plan.mapper;
|
|||||||
|
|
||||||
import com.github.yulichang.base.MPJBaseMapper;
|
import com.github.yulichang.base.MPJBaseMapper;
|
||||||
import com.njcn.gather.plan.pojo.po.AdPlan;
|
import com.njcn.gather.plan.pojo.po.AdPlan;
|
||||||
|
import com.njcn.gather.report.pojo.po.PqReport;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author caozehui
|
* @author caozehui
|
||||||
@@ -9,5 +11,21 @@ import com.njcn.gather.plan.pojo.po.AdPlan;
|
|||||||
*/
|
*/
|
||||||
public interface AdPlanMapper extends MPJBaseMapper<AdPlan> {
|
public interface AdPlanMapper extends MPJBaseMapper<AdPlan> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据名称和版本获取报告id
|
||||||
|
*
|
||||||
|
* @param name
|
||||||
|
* @param version
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
String getReportIdByNameAndVersion(@Param("name") String name, @Param("version") String version);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id获取报告模板
|
||||||
|
*
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
PqReport getPqReportById(String id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,5 +3,19 @@
|
|||||||
<mapper namespace="com.njcn.gather.plan.mapper.AdPlanMapper">
|
<mapper namespace="com.njcn.gather.plan.mapper.AdPlanMapper">
|
||||||
|
|
||||||
|
|
||||||
|
<select id="getReportIdByNameAndVersion" resultType="java.lang.String">
|
||||||
|
SELECT id
|
||||||
|
FROM pq_report
|
||||||
|
WHERE name = #{name}
|
||||||
|
AND version = #{version}
|
||||||
|
and state = 1
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="getPqReportById" resultType="com.njcn.gather.report.pojo.po.PqReport">
|
||||||
|
SELECT *
|
||||||
|
FROM pq_report
|
||||||
|
WHERE id = #{id}
|
||||||
|
and state = 1
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import lombok.Getter;
|
|||||||
*/
|
*/
|
||||||
@Getter
|
@Getter
|
||||||
public enum DataSourceEnum {
|
public enum DataSourceEnum {
|
||||||
THREE_SENSE_ACTUAL_TIME_DATA("0", "3秒实时数据"),
|
THREE_SENSE_ACTUAL_TIME_DATA("0", "3s实时数据"),
|
||||||
|
|
||||||
MINUTE_STATISTICS_MAX("1", "分钟统计数据-最大"),
|
MINUTE_STATISTICS_MAX("1", "分钟统计数据-最大"),
|
||||||
MINUTE_STATISTICS_MIN("2", "分钟统计数据-最小"),
|
MINUTE_STATISTICS_MIN("2", "分钟统计数据-最小"),
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
package com.njcn.gather.plan.pojo.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-01-16
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
public enum PlanResponseEnum {
|
|
||||||
PLAN_REPEATED("A003014", "当前模式下,该计划已存在"),
|
|
||||||
PLAN_NOT_EXIST("A003015", "该计划不存在"),
|
|
||||||
SCRIPT_RELATE_DICT_NOT_EXIST("A003016","脚本关联的字典不存在"),
|
|
||||||
NOT_CHECKED_PLAN_CANNOT_ANALYSE("A003017","只有检测状态为检测完成的计划才能进行统计分析" ),
|
|
||||||
CANNOT_CHANGE_SCRIPT_WHEN_CHECKING("A003018","只有检测状态为未检时,才能修改检测脚本" ),
|
|
||||||
CANNOT_CHANGE_ERROR_SYS_WHEN_CHECKING("A003019","只有检测状态为未检时,才能修改误差体系" );
|
|
||||||
|
|
||||||
private final String message;
|
|
||||||
private final String code;
|
|
||||||
|
|
||||||
|
|
||||||
PlanResponseEnum(String code, String message) {
|
|
||||||
this.code = code;
|
|
||||||
this.message = message;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +1,11 @@
|
|||||||
package com.njcn.gather.plan.pojo.param;
|
package com.njcn.gather.plan.pojo.param;
|
||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import com.njcn.web.pojo.param.BaseParam;
|
import com.njcn.web.pojo.param.BaseParam;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
import org.springframework.web.bind.annotation.RequestParam;
|
|
||||||
|
|
||||||
import javax.validation.constraints.*;
|
import javax.validation.constraints.*;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@@ -19,47 +18,53 @@ import java.util.List;
|
|||||||
public class AdPlanParam {
|
public class AdPlanParam {
|
||||||
|
|
||||||
@ApiModelProperty(value = "名称", required = true)
|
@ApiModelProperty(value = "名称", required = true)
|
||||||
@NotBlank(message = DevValidMessage.NAME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.NAME_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.PLAN_NAME_REGEX, message = DevValidMessage.NAME_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.PLAN_NAME_REGEX, message = DetectionValidMessage.NAME_FORMAT_ERROR)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@ApiModelProperty(value = "模式", required = true)
|
@ApiModelProperty(value = "模式", required = true)
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PATTERN_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PATTERN_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
private String pattern;
|
private String pattern;
|
||||||
|
|
||||||
// @ApiModelProperty(value = "父计划ID")
|
// @ApiModelProperty(value = "父计划ID")
|
||||||
// @Pattern(regexp = PatternRegex.SYSTEM_ID, message = DeviceValidMessage.PATTERN_FORMAT_ERROR)
|
// @Pattern(regexp = PatternRegex.SYSTEM_ID, message = DeviceValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
// private String fatherPlanId;
|
// private String fatherPlanId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "检测源ID列表",required = true)
|
@ApiModelProperty(value = "检测源ID列表", required = true)
|
||||||
@NotEmpty(message = DevValidMessage.SOURCE_IDS_NOT_EMPTY)
|
@NotEmpty(message = DetectionValidMessage.SOURCE_IDS_NOT_EMPTY)
|
||||||
private List<@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.SOURCE_ID_FORMAT_ERROR)String> sourceIds;
|
private List<@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.SOURCE_ID_FORMAT_ERROR) String> sourceIds;
|
||||||
|
|
||||||
@ApiModelProperty(value = "数据源ID列表", required = true)
|
@ApiModelProperty(value = "数据源ID列表", required = true)
|
||||||
@NotEmpty(message = DevValidMessage.DATASOURCE_ID_NOT_EMPTY)
|
@NotEmpty(message = DetectionValidMessage.DATASOURCE_ID_NOT_EMPTY)
|
||||||
private List<String> datasourceIds;
|
private List<String> datasourceIds;
|
||||||
|
|
||||||
@ApiModelProperty(value = "检测脚本ID", required = true)
|
@ApiModelProperty(value = "检测脚本ID", required = true)
|
||||||
@NotBlank(message = DevValidMessage.SCRIPT_ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.SCRIPT_ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.SCRIPT_ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.SCRIPT_ID_FORMAT_ERROR)
|
||||||
private String scriptId;
|
private String scriptId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "误差体系ID", required = true)
|
@ApiModelProperty(value = "误差体系ID", required = true)
|
||||||
@NotBlank(message = DevValidMessage.ERROR_SYS_ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ERROR_SYS_ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.ERROR_SYS_ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ERROR_SYS_ID_FORMAT_ERROR)
|
||||||
private String errorSysId;
|
private String errorSysId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "守时检测")
|
@ApiModelProperty(value = "守时检测")
|
||||||
@NotNull(message = DevValidMessage.TIME_CHECK_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.TIME_CHECK_NOT_NULL)
|
||||||
@Min(value = 0, message = DevValidMessage.TIME_CHECK_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.TIME_CHECK_FORMAT_ERROR)
|
||||||
@Max(value = 1, message = DevValidMessage.TIME_CHECK_FORMAT_ERROR)
|
@Max(value = 1, message = DetectionValidMessage.TIME_CHECK_FORMAT_ERROR)
|
||||||
private Integer timeCheck;
|
private Integer timeCheck;
|
||||||
|
|
||||||
@ApiModelProperty("被检设备ID列表")
|
@ApiModelProperty("被检设备ID列表")
|
||||||
@NotNull(message = DevValidMessage.PQ_DEV_IDS_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.PQ_DEV_IDS_NOT_NULL)
|
||||||
private List<String> devIds;
|
private List<String> devIds;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "是否关联报告")
|
||||||
|
private Integer associateReport;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "报告模板名称")
|
||||||
|
private String reportTemplateName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 分页查询实体
|
* 分页查询实体
|
||||||
*/
|
*/
|
||||||
@@ -67,27 +72,27 @@ public class AdPlanParam {
|
|||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
public static class QueryParam extends BaseParam {
|
public static class QueryParam extends BaseParam {
|
||||||
@ApiModelProperty("名称")
|
@ApiModelProperty("名称")
|
||||||
@Pattern(regexp = PatternRegex.DEV_NAME_REGEX, message = DevValidMessage.NAME_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.DEV_NAME_REGEX, message = DetectionValidMessage.NAME_FORMAT_ERROR)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@ApiModelProperty(value = "模式,字典表(数字、模拟、比对)")
|
@ApiModelProperty(value = "模式,字典表(数字、模拟、比对)")
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PATTERN_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PATTERN_NOT_BLANK)
|
||||||
private String pattern;
|
private String pattern;
|
||||||
|
|
||||||
@ApiModelProperty(value = "检测状态")
|
@ApiModelProperty(value = "检测状态")
|
||||||
@Min(value = 0, message = DevValidMessage.TEST_STATE_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.TEST_STATE_FORMAT_ERROR)
|
||||||
@Max(value = 2, message = DevValidMessage.TEST_STATE_FORMAT_ERROR)
|
@Max(value = 2, message = DetectionValidMessage.TEST_STATE_FORMAT_ERROR)
|
||||||
private Integer testState;
|
private Integer testState;
|
||||||
|
|
||||||
@ApiModelProperty(value = "报告生成状态")
|
@ApiModelProperty(value = "报告生成状态")
|
||||||
@Min(value = 0, message = DevValidMessage.REPORT_STATE_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.REPORT_STATE_FORMAT_ERROR)
|
||||||
@Max(value = 2, message = DevValidMessage.REPORT_STATE_FORMAT_ERROR)
|
@Max(value = 2, message = DetectionValidMessage.REPORT_STATE_FORMAT_ERROR)
|
||||||
private Integer reportState;
|
private Integer reportState;
|
||||||
|
|
||||||
@ApiModelProperty(value = "检测结果")
|
@ApiModelProperty(value = "检测结果")
|
||||||
@Min(value = 0, message = DevValidMessage.CHECK_RESULT_STATE_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.CHECK_RESULT_STATE_FORMAT_ERROR)
|
||||||
@Max(value = 2, message = DevValidMessage.CHECK_RESULT_STATE_FORMAT_ERROR)
|
@Max(value = 2, message = DetectionValidMessage.CHECK_RESULT_STATE_FORMAT_ERROR)
|
||||||
private Integer result;
|
private Integer result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,40 +100,13 @@ public class AdPlanParam {
|
|||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
public static class UpdateParam extends AdPlanParam {
|
public static class UpdateParam extends AdPlanParam {
|
||||||
@ApiModelProperty(value = "id", required = true)
|
@ApiModelProperty(value = "id", required = true)
|
||||||
@NotBlank(message = DevValidMessage.ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ID_FORMAT_ERROR)
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
/**
|
|
||||||
* 检测状态,字典表(未检、检测中、检测完成)
|
|
||||||
*/
|
|
||||||
// @ApiModelProperty(value = "检测状态")
|
|
||||||
// @NotNull(message = DeviceValidMessage.TEST_STATE_NOT_NULL)
|
|
||||||
// @Min(value = 0, message = DeviceValidMessage.TEST_STATE_FORMAT_ERROR)
|
|
||||||
// @Max(value = 2, message = DeviceValidMessage.TEST_STATE_FORMAT_ERROR)
|
|
||||||
// private Integer testState;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 报告生成状态,字典表(未生成、部分生成、全部生成)
|
|
||||||
*/
|
|
||||||
// @ApiModelProperty(value = "报告生成状态")
|
|
||||||
// @NotNull(message = DeviceValidMessage.REPORT_STATE_NOT_NULL)
|
|
||||||
// @Min(value = 0, message = DeviceValidMessage.REPORT_STATE_FORMAT_ERROR)
|
|
||||||
// @Max(value = 2, message = DeviceValidMessage.REPORT_STATE_FORMAT_ERROR)
|
|
||||||
// private Integer reportState;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 检测结果,字典表(符合、不符合、/)
|
|
||||||
*/
|
|
||||||
// @ApiModelProperty(value = "检测结果")
|
|
||||||
// @NotNull(message = DeviceValidMessage.CHECK_RESULT_STATE_NOT_NULL)
|
|
||||||
// @Min(value = 0, message = DeviceValidMessage.CHECK_RESULT_STATE_FORMAT_ERROR)
|
|
||||||
// @Max(value = 2, message = DeviceValidMessage.CHECK_RESULT_STATE_FORMAT_ERROR)
|
|
||||||
// private Integer result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public static class CheckParam{
|
public static class CheckParam {
|
||||||
// 0:不合格项复检 1:全部复检
|
// 0:不合格项复检 1:全部复检
|
||||||
private Integer reCheckType;
|
private Integer reCheckType;
|
||||||
private String planId;
|
private String planId;
|
||||||
|
|||||||
@@ -78,6 +78,16 @@ public class AdPlan extends BaseEntity implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private Integer code;
|
private Integer code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否关联报告,0-不关联 1-关联
|
||||||
|
*/
|
||||||
|
private Integer associateReport;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 报告模板ID,关联PQ_Report表
|
||||||
|
*/
|
||||||
|
private String reportTemplateId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 状态:0-删除 1-正常
|
* 状态:0-删除 1-正常
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,20 +1,11 @@
|
|||||||
package com.njcn.gather.plan.pojo.vo;
|
package com.njcn.gather.plan.pojo.vo;
|
||||||
|
|
||||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||||
import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
|
||||||
import com.njcn.gather.device.pojo.vo.CNDevExcel;
|
|
||||||
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
import org.hibernate.validator.constraints.Range;
|
|
||||||
|
|
||||||
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotBlank;
|
||||||
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.NotNull;
|
||||||
import javax.validation.constraints.Pattern;
|
|
||||||
import java.time.LocalDate;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author caozehui
|
* @author caozehui
|
||||||
@@ -23,41 +14,38 @@ import java.util.List;
|
|||||||
@Data
|
@Data
|
||||||
public class AdPlanExcel {
|
public class AdPlanExcel {
|
||||||
@Excel(name = "名称*", width = 40, needMerge = true, orderNum = "0")
|
@Excel(name = "名称*", width = 40, needMerge = true, orderNum = "0")
|
||||||
@NotBlank(message = DevValidMessage.NAME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.NAME_NOT_BLANK)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@Excel(name = "检测源*", width = 40, needMerge = true, orderNum = "1")
|
@Excel(name = "检测源*", width = 40, needMerge = true, orderNum = "1")
|
||||||
@NotBlank(message = DevValidMessage.SOURC_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.SOURC_NOT_BLANK)
|
||||||
private String source;
|
private String source;
|
||||||
|
|
||||||
@Excel(name = "数据源*", width = 20, needMerge = true, orderNum = "2")
|
@Excel(name = "数据源*", width = 20, needMerge = true, orderNum = "2")
|
||||||
@NotBlank(message = DevValidMessage.DATASOURCE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.DATASOURCE_NOT_BLANK)
|
||||||
private String datasourceId;
|
private String datasourceId;
|
||||||
|
|
||||||
@Excel(name = "脚本*", width = 50, needMerge = true, orderNum = "3")
|
@Excel(name = "脚本*", width = 100, needMerge = true, orderNum = "3")
|
||||||
@NotBlank(message = DevValidMessage.SCRIPT_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.SCRIPT_NOT_BLANK)
|
||||||
private String scriptId;
|
private String scriptId;
|
||||||
|
|
||||||
@Excel(name = "误差体系*", width = 30, needMerge = true, orderNum = "4")
|
@Excel(name = "误差体系*", width = 30, needMerge = true, orderNum = "4")
|
||||||
@NotBlank(message = DevValidMessage.ERRORSYS_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ERRORSYS_NOT_BLANK)
|
||||||
private String errorSysId;
|
private String errorSysId;
|
||||||
|
|
||||||
@Excel(name = "是否做守时检测*", width = 15, replace = {"否_0", "是_1"}, needMerge = true, orderNum = "5")
|
@Excel(name = "是否做守时检测*", width = 15, replace = {"否_0", "是_1"}, needMerge = true, orderNum = "5")
|
||||||
@NotNull(message = DevValidMessage.TIMECHECK_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.TIMECHECK_NOT_NULL)
|
||||||
private Integer timeCheck;
|
private Integer timeCheck;
|
||||||
|
|
||||||
@Excel(name = "检测状态*", width = 10, replace = {"未检_0", "检测中_1", "检测完成_2"}, needMerge = true, orderNum = "6")
|
@Excel(name = "检测状态*", width = 10, replace = {"未检_0", "检测中_1", "检测完成_2"}, needMerge = true, orderNum = "6")
|
||||||
@NotNull(message = DevValidMessage.TEST_STATE_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.TEST_STATE_NOT_NULL)
|
||||||
private Integer testState;
|
private Integer testState;
|
||||||
|
|
||||||
@Excel(name = "报告生成状态*", width = 15, replace = {"未生成_0", "部分生成_1", "全部生成_2"}, needMerge = true, orderNum = "7")
|
@Excel(name = "报告生成状态*", width = 15, replace = {"未生成_0", "部分生成_1", "全部生成_2"}, needMerge = true, orderNum = "7")
|
||||||
@NotNull(message = DevValidMessage.REPORT_STATE_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.REPORT_STATE_NOT_NULL)
|
||||||
private Integer reportState;
|
private Integer reportState;
|
||||||
|
|
||||||
@Excel(name = "检测结果*", width = 10, replace = {"不符合_0", "符合_1", "未检_2"}, needMerge = true, orderNum = "8")
|
@Excel(name = "检测结果*", width = 10, replace = {"不符合_0", "符合_1", "未检_2"}, needMerge = true, orderNum = "8")
|
||||||
@NotNull(message = DevValidMessage.CHECK_RESULT_STATE_NOT_NULL)
|
@NotNull(message = DetectionValidMessage.CHECK_RESULT_STATE_NOT_NULL)
|
||||||
private Integer result;
|
private Integer result;
|
||||||
|
|
||||||
@ExcelCollection(name = "绑定的设备", orderNum = "9")
|
|
||||||
private List<CNDevExcel> devices;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package com.njcn.gather.plan.pojo.vo;
|
package com.njcn.gather.plan.pojo.vo;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
@@ -97,4 +98,14 @@ public class AdPlanVO {
|
|||||||
* 创建时间
|
* 创建时间
|
||||||
*/
|
*/
|
||||||
private String createTime;
|
private String createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否关联报告,0-不关联 1-关联
|
||||||
|
*/
|
||||||
|
private Integer associateReport;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 报告模板名称
|
||||||
|
*/
|
||||||
|
private String reportTemplateName;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
package com.njcn.gather.plan.pojo.vo;
|
||||||
|
|
||||||
|
import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
|
||||||
|
import com.njcn.gather.device.pojo.vo.CNDevExcel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author caozehui
|
||||||
|
* @data 2025-03-25
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class CNPlanExcel extends AdPlanExcel {
|
||||||
|
|
||||||
|
|
||||||
|
@ExcelCollection(name = "绑定的设备", orderNum = "9")
|
||||||
|
private List<CNDevExcel> devices;
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
package com.njcn.gather.plan.pojo.vo;
|
||||||
|
|
||||||
|
import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
|
||||||
|
import com.njcn.gather.device.pojo.vo.ProvinceDevExcel;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author caozehui
|
||||||
|
* @data 2025-03-25
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ProvincePlanExcel extends AdPlanExcel {
|
||||||
|
|
||||||
|
@ExcelCollection(name = "绑定的设备", orderNum = "9")
|
||||||
|
private List<ProvinceDevExcel> devices;
|
||||||
|
}
|
||||||
@@ -6,7 +6,9 @@ import com.njcn.gather.plan.pojo.param.AdPlanParam;
|
|||||||
import com.njcn.gather.plan.pojo.po.AdPlan;
|
import com.njcn.gather.plan.pojo.po.AdPlan;
|
||||||
import com.njcn.gather.plan.pojo.vo.AdPlanExcel;
|
import com.njcn.gather.plan.pojo.vo.AdPlanExcel;
|
||||||
import com.njcn.gather.plan.pojo.vo.AdPlanVO;
|
import com.njcn.gather.plan.pojo.vo.AdPlanVO;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@@ -56,26 +58,6 @@ public interface IAdPlanService extends IService<AdPlan> {
|
|||||||
*/
|
*/
|
||||||
List<Map<String, Object>> listByPattern(String pattern);
|
List<Map<String, Object>> listByPattern(String pattern);
|
||||||
|
|
||||||
/**
|
|
||||||
* 二楼下载检测计划模板
|
|
||||||
*/
|
|
||||||
void downloadCNPlanTemplate();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 二楼导出检测计划数据
|
|
||||||
*
|
|
||||||
* @param queryParam 查询参数
|
|
||||||
*/
|
|
||||||
void exportCNPlan(AdPlanParam.QueryParam queryParam);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 二楼导入检测计划
|
|
||||||
*
|
|
||||||
* @param planExcelList
|
|
||||||
* @param patternId
|
|
||||||
*/
|
|
||||||
void importCNPlan(List<AdPlanExcel> planExcelList, String patternId);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 可视化
|
* 可视化
|
||||||
*
|
*
|
||||||
@@ -119,4 +101,25 @@ public interface IAdPlanService extends IService<AdPlan> {
|
|||||||
* @param ids
|
* @param ids
|
||||||
*/
|
*/
|
||||||
void analyse(List<String> ids);
|
void analyse(List<String> ids);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导出检测计划数据
|
||||||
|
*
|
||||||
|
* @param queryParam
|
||||||
|
*/
|
||||||
|
void exportPlan(AdPlanParam.QueryParam queryParam);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下载检测计划模板
|
||||||
|
*/
|
||||||
|
void downloadTemplate();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导入检测计划数据
|
||||||
|
*
|
||||||
|
* @param file
|
||||||
|
* @param patternId
|
||||||
|
* @param response
|
||||||
|
*/
|
||||||
|
void importPlan(MultipartFile file, String patternId, HttpServletResponse response);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
package com.njcn.gather.plan.service.impl;
|
package com.njcn.gather.plan.service.impl;
|
||||||
|
|
||||||
|
import cn.afterturn.easypoi.excel.ExcelImportUtil;
|
||||||
import cn.afterturn.easypoi.excel.entity.ExportParams;
|
import cn.afterturn.easypoi.excel.entity.ExportParams;
|
||||||
|
import cn.afterturn.easypoi.excel.entity.ImportParams;
|
||||||
|
import cn.afterturn.easypoi.excel.entity.result.ExcelImportResult;
|
||||||
import cn.hutool.core.bean.BeanUtil;
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
import cn.hutool.core.collection.CollUtil;
|
import cn.hutool.core.collection.CollUtil;
|
||||||
import cn.hutool.core.util.CharsetUtil;
|
import cn.hutool.core.util.CharsetUtil;
|
||||||
@@ -19,31 +22,33 @@ import com.njcn.gather.device.pojo.enums.*;
|
|||||||
import com.njcn.gather.device.pojo.param.PqDevParam;
|
import com.njcn.gather.device.pojo.param.PqDevParam;
|
||||||
import com.njcn.gather.device.pojo.po.PqDev;
|
import com.njcn.gather.device.pojo.po.PqDev;
|
||||||
import com.njcn.gather.device.pojo.vo.CNDevExcel;
|
import com.njcn.gather.device.pojo.vo.CNDevExcel;
|
||||||
|
import com.njcn.gather.device.pojo.vo.ProvinceDevExcel;
|
||||||
import com.njcn.gather.device.service.IPqDevService;
|
import com.njcn.gather.device.service.IPqDevService;
|
||||||
import com.njcn.gather.err.pojo.po.PqErrSys;
|
import com.njcn.gather.err.pojo.po.PqErrSys;
|
||||||
import com.njcn.gather.err.service.IPqErrSysService;
|
import com.njcn.gather.err.service.IPqErrSysService;
|
||||||
import com.njcn.gather.plan.mapper.AdPlanMapper;
|
import com.njcn.gather.plan.mapper.AdPlanMapper;
|
||||||
import com.njcn.gather.plan.pojo.enums.DataSourceEnum;
|
import com.njcn.gather.plan.pojo.enums.DataSourceEnum;
|
||||||
import com.njcn.gather.plan.pojo.enums.PlanReportStateEnum;
|
import com.njcn.gather.plan.pojo.enums.PlanReportStateEnum;
|
||||||
import com.njcn.gather.plan.pojo.enums.PlanResponseEnum;
|
|
||||||
import com.njcn.gather.plan.pojo.param.AdPlanParam;
|
import com.njcn.gather.plan.pojo.param.AdPlanParam;
|
||||||
import com.njcn.gather.plan.pojo.po.AdPlan;
|
import com.njcn.gather.plan.pojo.po.AdPlan;
|
||||||
import com.njcn.gather.plan.pojo.vo.AdPlanExcel;
|
|
||||||
import com.njcn.gather.plan.pojo.vo.AdPlanVO;
|
import com.njcn.gather.plan.pojo.vo.AdPlanVO;
|
||||||
|
import com.njcn.gather.plan.pojo.vo.CNPlanExcel;
|
||||||
|
import com.njcn.gather.plan.pojo.vo.ProvincePlanExcel;
|
||||||
import com.njcn.gather.plan.service.IAdPlanService;
|
import com.njcn.gather.plan.service.IAdPlanService;
|
||||||
import com.njcn.gather.plan.service.IAdPlanSourceService;
|
import com.njcn.gather.plan.service.IAdPlanSourceService;
|
||||||
|
import com.njcn.gather.pojo.enums.DetectionResponseEnum;
|
||||||
|
import com.njcn.gather.report.pojo.po.PqReport;
|
||||||
import com.njcn.gather.script.pojo.po.PqScriptDtls;
|
import com.njcn.gather.script.pojo.po.PqScriptDtls;
|
||||||
import com.njcn.gather.script.service.IPqScriptDtlsService;
|
import com.njcn.gather.script.service.IPqScriptDtlsService;
|
||||||
import com.njcn.gather.script.service.IPqScriptService;
|
import com.njcn.gather.script.service.IPqScriptService;
|
||||||
import com.njcn.gather.source.pojo.po.PqSource;
|
import com.njcn.gather.source.pojo.po.PqSource;
|
||||||
import com.njcn.gather.source.service.IPqSourceService;
|
import com.njcn.gather.source.service.IPqSourceService;
|
||||||
import com.njcn.gather.storage.mapper.DetectionDataDealMapper;
|
|
||||||
import com.njcn.gather.storage.pojo.param.StorageParam;
|
import com.njcn.gather.storage.pojo.param.StorageParam;
|
||||||
import com.njcn.gather.storage.service.AdHarmonicService;
|
import com.njcn.gather.storage.service.AdHarmonicService;
|
||||||
import com.njcn.gather.storage.service.AdNonHarmonicService;
|
|
||||||
import com.njcn.gather.storage.service.TableGenService;
|
import com.njcn.gather.storage.service.TableGenService;
|
||||||
import com.njcn.gather.system.config.pojo.po.SysTestConfig;
|
import com.njcn.gather.system.cfg.pojo.enums.SceneEnum;
|
||||||
import com.njcn.gather.system.config.service.ISysTestConfigService;
|
import com.njcn.gather.system.cfg.pojo.po.SysTestConfig;
|
||||||
|
import com.njcn.gather.system.cfg.service.ISysTestConfigService;
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictData;
|
import com.njcn.gather.system.dictionary.pojo.po.DictData;
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictTree;
|
import com.njcn.gather.system.dictionary.pojo.po.DictTree;
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictType;
|
import com.njcn.gather.system.dictionary.pojo.po.DictType;
|
||||||
@@ -55,6 +60,7 @@ import com.njcn.gather.type.service.IDevTypeService;
|
|||||||
import com.njcn.web.factory.PageFactory;
|
import com.njcn.web.factory.PageFactory;
|
||||||
import com.njcn.web.utils.ExcelUtil;
|
import com.njcn.web.utils.ExcelUtil;
|
||||||
import com.njcn.web.utils.HttpServletUtil;
|
import com.njcn.web.utils.HttpServletUtil;
|
||||||
|
import com.njcn.web.utils.PoiUtil;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.commons.lang3.ObjectUtils;
|
import org.apache.commons.lang3.ObjectUtils;
|
||||||
@@ -66,6 +72,7 @@ import org.openxmlformats.schemas.drawingml.x2006.chart.CTBarSer;
|
|||||||
import org.openxmlformats.schemas.drawingml.x2006.chart.CTPlotArea;
|
import org.openxmlformats.schemas.drawingml.x2006.chart.CTPlotArea;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
import javax.servlet.ServletOutputStream;
|
import javax.servlet.ServletOutputStream;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
@@ -106,6 +113,10 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
BeanUtil.copyProperties(adPlan, adPlanVO);
|
BeanUtil.copyProperties(adPlan, adPlanVO);
|
||||||
adPlanVO.setCreateTime(adPlanVO.getCreateTime().replace("T", " "));
|
adPlanVO.setCreateTime(adPlanVO.getCreateTime().replace("T", " "));
|
||||||
adPlanVO.setDatasourceIds(Arrays.asList(adPlan.getDatasourceId().split(StrUtil.COMMA)));
|
adPlanVO.setDatasourceIds(Arrays.asList(adPlan.getDatasourceId().split(StrUtil.COMMA)));
|
||||||
|
if (StrUtil.isNotBlank(adPlan.getReportTemplateId())) {
|
||||||
|
PqReport report = this.baseMapper.getPqReportById(adPlan.getReportTemplateId());
|
||||||
|
adPlanVO.setReportTemplateName(report.getName() + "_" + report.getVersion());
|
||||||
|
}
|
||||||
return adPlanVO;
|
return adPlanVO;
|
||||||
}).collect(Collectors.toList());
|
}).collect(Collectors.toList());
|
||||||
adPlanVOList.forEach(adPlanVO -> {
|
adPlanVOList.forEach(adPlanVO -> {
|
||||||
@@ -126,7 +137,7 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean addAdPlan(AdPlanParam param) {
|
public boolean addAdPlan(AdPlanParam param) {
|
||||||
this.checkRepeat(param, false);
|
this.checkRepeat(param, false);
|
||||||
AdPlan adPlan = new AdPlan();
|
AdPlan adPlan = new AdPlan();
|
||||||
@@ -144,6 +155,15 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
adPlan.setResult(CheckResultEnum.UNCHECKED.getValue());
|
adPlan.setResult(CheckResultEnum.UNCHECKED.getValue());
|
||||||
adPlan.setCode(this.generateCode());
|
adPlan.setCode(this.generateCode());
|
||||||
|
|
||||||
|
if (param.getAssociateReport() != null && param.getAssociateReport() == 1) {
|
||||||
|
String reportTemplateName = param.getReportTemplateName();
|
||||||
|
String[] split = reportTemplateName.split("_");
|
||||||
|
String reportId = this.baseMapper.getReportIdByNameAndVersion(split[0], split[1]);
|
||||||
|
if (StrUtil.isNotBlank(reportId)) {
|
||||||
|
adPlan.setReportTemplateId(reportId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 新增检测计划、检测源关联
|
// 新增检测计划、检测源关联
|
||||||
adPlanSourceService.addAdPlanSource(planId, param.getSourceIds());
|
adPlanSourceService.addAdPlanSource(planId, param.getSourceIds());
|
||||||
if (ObjectUtil.isNotEmpty(param.getDevIds())) {
|
if (ObjectUtil.isNotEmpty(param.getDevIds())) {
|
||||||
@@ -162,17 +182,35 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updateAdPlan(AdPlanParam.UpdateParam param) {
|
public boolean updateAdPlan(AdPlanParam.UpdateParam param) {
|
||||||
this.checkRepeat(param, true);
|
this.checkRepeat(param, true);
|
||||||
AdPlan plan1 = this.getById(param.getId());
|
AdPlan plan1 = this.getById(param.getId());
|
||||||
AdPlan plan2 = new AdPlan();
|
AdPlan plan2 = new AdPlan();
|
||||||
|
|
||||||
|
if (param.getAssociateReport() != null && param.getAssociateReport() == 1) {
|
||||||
|
String reportTemplateName = param.getReportTemplateName();
|
||||||
|
String[] split = reportTemplateName.split("_");
|
||||||
|
String reportId = this.baseMapper.getReportIdByNameAndVersion(split[0], split[1]);
|
||||||
|
if (plan1.getTestState() != CheckStateEnum.UNCHECKED.getValue()) {
|
||||||
|
if (!reportId.equals(plan1.getReportTemplateId())) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.CANNOT_CHANGE_REPORT_WHEN_CHECKING);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (StrUtil.isNotBlank(reportId)) {
|
||||||
|
plan2.setReportTemplateId(reportId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (plan1.getTestState() != CheckStateEnum.UNCHECKED.getValue()) {
|
if (plan1.getTestState() != CheckStateEnum.UNCHECKED.getValue()) {
|
||||||
if (!plan1.getScriptId().equals(param.getScriptId())) {
|
if (!plan1.getScriptId().equals(param.getScriptId())) {
|
||||||
throw new BusinessException(PlanResponseEnum.CANNOT_CHANGE_SCRIPT_WHEN_CHECKING);
|
throw new BusinessException(DetectionResponseEnum.CANNOT_CHANGE_SCRIPT_WHEN_CHECKING);
|
||||||
}
|
}
|
||||||
if (!plan1.getErrorSysId().equals(param.getErrorSysId())) {
|
if (!plan1.getErrorSysId().equals(param.getErrorSysId())) {
|
||||||
throw new BusinessException(PlanResponseEnum.CANNOT_CHANGE_ERROR_SYS_WHEN_CHECKING);
|
throw new BusinessException(DetectionResponseEnum.CANNOT_CHANGE_ERROR_SYS_WHEN_CHECKING);
|
||||||
|
}
|
||||||
|
if (param.getAssociateReport() != null && param.getAssociateReport() != plan1.getAssociateReport()) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.CANNOT_CHANGE_REPORT_WHEN_CHECKING);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -186,13 +224,13 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deleteAdPlan(List<String> ids) {
|
public boolean deleteAdPlan(List<String> ids) {
|
||||||
for (String id : ids) {
|
for (String id : ids) {
|
||||||
PqDevParam.QueryParam queryParam = new PqDevParam.QueryParam();
|
PqDevParam.QueryParam queryParam = new PqDevParam.QueryParam();
|
||||||
queryParam.setPlanId(id);
|
queryParam.setPlanId(id);
|
||||||
if (ObjectUtils.isNotEmpty(pqDevService.listByPlanId(queryParam))) {
|
if (ObjectUtils.isNotEmpty(pqDevService.listByPlanId(queryParam))) {
|
||||||
throw new BusinessException(DevResponseEnum.PLAN_HAS_DEVICE_BIND);
|
throw new BusinessException(DetectionResponseEnum.PLAN_HAS_DEVICE_BIND);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 删除检测计划、检测源关联
|
// 删除检测计划、检测源关联
|
||||||
@@ -240,96 +278,6 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void downloadCNPlanTemplate() {
|
|
||||||
ExcelUtil.exportExcelPullDown(new ExportParams(), "检测计划模板.xlsx", 2, this.getPullDownList(), AdPlanExcel.class, Collections.emptyList());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void exportCNPlan(AdPlanParam.QueryParam queryParam) {
|
|
||||||
List<AdPlan> planList = this.list(this.getQueryWrapper(queryParam));
|
|
||||||
this.visualize(planList);
|
|
||||||
List<AdPlanExcel> planExcelList = BeanUtil.copyToList(planList, AdPlanExcel.class);
|
|
||||||
for (int i = 0; i < planList.size(); i++) {
|
|
||||||
List<PqSource> pqSources = adPlanSourceService.listPqSourceByPlanId(planList.get(i).getId());
|
|
||||||
planExcelList.get(i).setSource(pqSources.stream().map(PqSource::getName).collect(Collectors.joining(StrUtil.COMMA)));
|
|
||||||
|
|
||||||
PqDevParam.QueryParam queryParam1 = new PqDevParam.QueryParam();
|
|
||||||
queryParam1.setPlanId(planList.get(i).getId());
|
|
||||||
List<PqDev> pqDevs = pqDevService.listByPlanId(queryParam1);
|
|
||||||
pqDevService.visualizeCNDev(pqDevs);
|
|
||||||
List<CNDevExcel> deviceExportData = BeanUtil.copyToList(pqDevs, CNDevExcel.class);
|
|
||||||
planExcelList.get(i).setDevices(deviceExportData);
|
|
||||||
}
|
|
||||||
ExcelUtil.exportExcelPullDown(new ExportParams(), "检测计划导出数据.xlsx", 2, this.getPullDownList(), AdPlanExcel.class, planExcelList);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
@Transactional(rollbackFor = Exception.class)
|
|
||||||
public void importCNPlan(List<AdPlanExcel> planExcelList, String patternId) {
|
|
||||||
List<AdPlan> adPlans = BeanUtil.copyToList(planExcelList, AdPlan.class);
|
|
||||||
|
|
||||||
String patternCode = dictDataService.getDictDataById(patternId).getCode();
|
|
||||||
for (int i = 0; i < adPlans.size(); i++) {
|
|
||||||
AdPlanExcel adPlanExcel = planExcelList.get(i);
|
|
||||||
AdPlanParam adPlanParam = new AdPlanParam();
|
|
||||||
adPlanParam.setName(adPlanExcel.getName());
|
|
||||||
adPlanParam.setPattern(patternId);
|
|
||||||
checkRepeat(adPlanParam, false);
|
|
||||||
|
|
||||||
String planId = UUID.randomUUID().toString().replaceAll("-", "");
|
|
||||||
adPlans.get(i).setId(planId);
|
|
||||||
adPlans.get(i).setPattern(patternId);
|
|
||||||
Integer code = this.generateCode();
|
|
||||||
adPlans.get(i).setCode(code);
|
|
||||||
|
|
||||||
tableGenService.deleteTable(Arrays.asList(code.toString()));
|
|
||||||
tableGenService.genAdNonHarmonicTable(code.toString());
|
|
||||||
|
|
||||||
String source = adPlanExcel.getSource();
|
|
||||||
String[] sourceNames = source.split(StrUtil.COMMA);
|
|
||||||
// 若非比对模式,检测源、数据源有2个以上时,不导入
|
|
||||||
if (!PatternEnum.CONTRAST.getValue().equals(patternCode) && sourceNames.length > 1) {
|
|
||||||
throw new BusinessException(DevResponseEnum.IMPORT_SOURCE_ERROR);
|
|
||||||
}
|
|
||||||
|
|
||||||
String datasource = adPlanExcel.getDatasourceId();
|
|
||||||
String[] datasourceIds = datasource.split(StrUtil.COMMA);
|
|
||||||
// 若非比对模式,数据源有2个以上时,不导入
|
|
||||||
if (!PatternEnum.CONTRAST.getValue().equals(patternCode) && datasourceIds.length > 1) {
|
|
||||||
throw new BusinessException(DevResponseEnum.IMPORT_DATASOURCE_ERROR);
|
|
||||||
}
|
|
||||||
|
|
||||||
List<String> sourceIds = pqSourceService.listPqSourceIdByName(sourceNames);
|
|
||||||
adPlanSourceService.addAdPlanSource(planId, sourceIds);
|
|
||||||
|
|
||||||
List<CNDevExcel> cnDevExcelList = adPlanExcel.getDevices();
|
|
||||||
pqDevService.importCNDev(cnDevExcelList, patternId, planId);
|
|
||||||
}
|
|
||||||
// 逆向可视化
|
|
||||||
this.reverseVisualize(adPlans);
|
|
||||||
this.saveBatch(adPlans);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取查询条件wrapper
|
|
||||||
*
|
|
||||||
* @param queryParam 查询条件
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
private Wrapper getQueryWrapper(AdPlanParam.QueryParam queryParam) {
|
|
||||||
QueryWrapper<AdPlan> queryWrapper = new QueryWrapper<>();
|
|
||||||
if (ObjectUtil.isNotNull(queryParam)) {
|
|
||||||
queryWrapper.eq(StrUtil.isNotBlank(queryParam.getPattern()), "ad_plan.pattern", queryParam.getPattern())
|
|
||||||
.eq(StrUtil.isNotBlank(queryParam.getName()), "ad_plan.name", queryParam.getName())
|
|
||||||
.eq(ObjectUtil.isNotNull(queryParam.getTestState()), "ad_plan.Test_State", queryParam.getTestState())
|
|
||||||
.eq(ObjectUtil.isNotNull(queryParam.getReportState()), "ad_plan.Report_State", queryParam.getReportState())
|
|
||||||
.eq(ObjectUtil.isNotNull(queryParam.getResult()), "ad_plan.result", queryParam.getResult());
|
|
||||||
}
|
|
||||||
queryWrapper.eq("ad_plan.state", DataStateEnum.ENABLE.getCode()).orderByDesc("Create_Time");
|
|
||||||
return queryWrapper;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void visualize(List<AdPlan> planList) {
|
public void visualize(List<AdPlan> planList) {
|
||||||
planList.forEach(adPlan -> {
|
planList.forEach(adPlan -> {
|
||||||
@@ -360,7 +308,7 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
List<Map<String, String>> result = new ArrayList<>();
|
List<Map<String, String>> result = new ArrayList<>();
|
||||||
AdPlan adPlan = this.getById(planId);
|
AdPlan adPlan = this.getById(planId);
|
||||||
if (ObjectUtil.isNull(adPlan)) {
|
if (ObjectUtil.isNull(adPlan)) {
|
||||||
throw new BusinessException(PlanResponseEnum.PLAN_NOT_EXIST);
|
throw new BusinessException(DetectionResponseEnum.PLAN_NOT_EXIST);
|
||||||
}
|
}
|
||||||
String scriptId = adPlan.getScriptId();
|
String scriptId = adPlan.getScriptId();
|
||||||
|
|
||||||
@@ -379,7 +327,7 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
// scriptDtlsList = scriptDtlsList.stream().filter(obj -> !sortSet.contains(obj.getScriptIndex())).collect(Collectors.toList());
|
// scriptDtlsList = scriptDtlsList.stream().filter(obj -> !sortSet.contains(obj.getScriptIndex())).collect(Collectors.toList());
|
||||||
// }
|
// }
|
||||||
StorageParam storageParam = new StorageParam();
|
StorageParam storageParam = new StorageParam();
|
||||||
storageParam.setCode(Integer.valueOf(adPlan.getCode()));
|
storageParam.setCode(adPlan.getCode() + "");
|
||||||
storageParam.setScriptId(adPlan.getScriptId());
|
storageParam.setScriptId(adPlan.getScriptId());
|
||||||
List<Integer> indexes = adHarmonicService.getIndex(storageParam, true);
|
List<Integer> indexes = adHarmonicService.getIndex(storageParam, true);
|
||||||
scriptDtlsList = scriptDtlsList.stream().filter(obj -> indexes.contains(obj.getScriptIndex())).collect(Collectors.toList());
|
scriptDtlsList = scriptDtlsList.stream().filter(obj -> indexes.contains(obj.getScriptIndex())).collect(Collectors.toList());
|
||||||
@@ -397,7 +345,7 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
map.put("code", dictTree.getCode());
|
map.put("code", dictTree.getCode());
|
||||||
map.put("scriptName", dictTree.getName());
|
map.put("scriptName", dictTree.getName());
|
||||||
} else {
|
} else {
|
||||||
throw new BusinessException(PlanResponseEnum.SCRIPT_RELATE_DICT_NOT_EXIST);
|
throw new BusinessException(DetectionResponseEnum.SCRIPT_RELATE_DICT_NOT_EXIST);
|
||||||
}
|
}
|
||||||
result.add(map);
|
result.add(map);
|
||||||
});
|
});
|
||||||
@@ -460,7 +408,7 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
|
|
||||||
planList.forEach(plan -> {
|
planList.forEach(plan -> {
|
||||||
if (!CheckStateEnum.CHECKED.getValue().equals(plan.getTestState())) {
|
if (!CheckStateEnum.CHECKED.getValue().equals(plan.getTestState())) {
|
||||||
throw new BusinessException(PlanResponseEnum.NOT_CHECKED_PLAN_CANNOT_ANALYSE);
|
throw new BusinessException(DetectionResponseEnum.NOT_CHECKED_PLAN_CANNOT_ANALYSE);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -509,6 +457,279 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void exportPlan(AdPlanParam.QueryParam queryParam) {
|
||||||
|
String currrentScene = sysTestConfigService.getCurrrentScene();
|
||||||
|
SceneEnum sceneEnum = SceneEnum.getSceneEnum(currrentScene);
|
||||||
|
switch (sceneEnum) {
|
||||||
|
case PROVINCE_PLATFORM:
|
||||||
|
this.exportProvincePlan(queryParam);
|
||||||
|
break;
|
||||||
|
case LEAVE_FACTORY_TEST:
|
||||||
|
this.exportCNPlan(queryParam);
|
||||||
|
break;
|
||||||
|
case SELF_TEST:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void downloadTemplate() {
|
||||||
|
String currrentScene = sysTestConfigService.getCurrrentScene();
|
||||||
|
SceneEnum sceneEnum = SceneEnum.getSceneEnum(currrentScene);
|
||||||
|
switch (sceneEnum) {
|
||||||
|
case PROVINCE_PLATFORM:
|
||||||
|
ExcelUtil.exportExcelPullDown(new ExportParams(), "检测计划模板.xlsx", 2, this.getPullDownList(SceneEnum.PROVINCE_PLATFORM), ProvincePlanExcel.class, Collections.emptyList());
|
||||||
|
break;
|
||||||
|
case LEAVE_FACTORY_TEST:
|
||||||
|
ExcelUtil.exportExcelPullDown(new ExportParams(), "检测计划模板.xlsx", 2, this.getPullDownList(SceneEnum.LEAVE_FACTORY_TEST), CNPlanExcel.class, Collections.emptyList());
|
||||||
|
break;
|
||||||
|
case SELF_TEST:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void importPlan(MultipartFile file, String patternId, HttpServletResponse response) {
|
||||||
|
String currrentScene = sysTestConfigService.getCurrrentScene();
|
||||||
|
SceneEnum sceneEnum = SceneEnum.getSceneEnum(currrentScene);
|
||||||
|
switch (sceneEnum) {
|
||||||
|
case PROVINCE_PLATFORM:
|
||||||
|
this.importProvincePlan(file, patternId, response);
|
||||||
|
break;
|
||||||
|
case LEAVE_FACTORY_TEST:
|
||||||
|
this.importCNPlan(file, patternId, response);
|
||||||
|
break;
|
||||||
|
case SELF_TEST:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 省级平台导出检测计划数据
|
||||||
|
*
|
||||||
|
* @param queryParam
|
||||||
|
*/
|
||||||
|
private void exportProvincePlan(AdPlanParam.QueryParam queryParam) {
|
||||||
|
List<AdPlan> planList = this.list(this.getQueryWrapper(queryParam));
|
||||||
|
this.visualize(planList);
|
||||||
|
List<ProvincePlanExcel> planExcelList = BeanUtil.copyToList(planList, ProvincePlanExcel.class);
|
||||||
|
for (int i = 0; i < planList.size(); i++) {
|
||||||
|
List<PqSource> pqSources = adPlanSourceService.listPqSourceByPlanId(planList.get(i).getId());
|
||||||
|
planExcelList.get(i).setSource(pqSources.stream().map(PqSource::getName).collect(Collectors.joining(StrUtil.COMMA)));
|
||||||
|
|
||||||
|
PqDevParam.QueryParam queryParam1 = new PqDevParam.QueryParam();
|
||||||
|
queryParam1.setPlanId(planList.get(i).getId());
|
||||||
|
List<PqDev> pqDevs = pqDevService.listByPlanId(queryParam1);
|
||||||
|
pqDevService.visualizeProvinceDev(pqDevs);
|
||||||
|
List<ProvinceDevExcel> deviceExportData = BeanUtil.copyToList(pqDevs, ProvinceDevExcel.class);
|
||||||
|
planExcelList.get(i).setDevices(deviceExportData);
|
||||||
|
}
|
||||||
|
ExcelUtil.exportExcelPullDown(new ExportParams(), "检测计划导出数据.xlsx", 2, this.getPullDownList(SceneEnum.PROVINCE_PLATFORM), ProvincePlanExcel.class, planExcelList);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 二楼导出检测计划数据
|
||||||
|
*
|
||||||
|
* @param queryParam 查询参数
|
||||||
|
*/
|
||||||
|
private void exportCNPlan(AdPlanParam.QueryParam queryParam) {
|
||||||
|
List<AdPlan> planList = this.list(this.getQueryWrapper(queryParam));
|
||||||
|
this.visualize(planList);
|
||||||
|
List<CNPlanExcel> planExcelList = BeanUtil.copyToList(planList, CNPlanExcel.class);
|
||||||
|
for (int i = 0; i < planList.size(); i++) {
|
||||||
|
List<PqSource> pqSources = adPlanSourceService.listPqSourceByPlanId(planList.get(i).getId());
|
||||||
|
planExcelList.get(i).setSource(pqSources.stream().map(PqSource::getName).collect(Collectors.joining(StrUtil.COMMA)));
|
||||||
|
|
||||||
|
PqDevParam.QueryParam queryParam1 = new PqDevParam.QueryParam();
|
||||||
|
queryParam1.setPlanId(planList.get(i).getId());
|
||||||
|
List<PqDev> pqDevs = pqDevService.listByPlanId(queryParam1);
|
||||||
|
pqDevService.visualizeCNDev(pqDevs);
|
||||||
|
List<CNDevExcel> deviceExportData = BeanUtil.copyToList(pqDevs, CNDevExcel.class);
|
||||||
|
planExcelList.get(i).setDevices(deviceExportData);
|
||||||
|
}
|
||||||
|
ExcelUtil.exportExcelPullDown(new ExportParams(), "检测计划导出数据.xlsx", 2, this.getPullDownList(SceneEnum.LEAVE_FACTORY_TEST), CNPlanExcel.class, planExcelList);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Transactional
|
||||||
|
public void importCNPlan(MultipartFile file, String patternId, HttpServletResponse response) {
|
||||||
|
ImportParams params = new ImportParams();
|
||||||
|
params.setStartSheetIndex(0);
|
||||||
|
params.setSheetNum(1);
|
||||||
|
params.setHeadRows(2);
|
||||||
|
params.setNeedVerify(true);
|
||||||
|
|
||||||
|
List<CNPlanExcel> planExcelList = null;
|
||||||
|
try {
|
||||||
|
ExcelImportResult<CNPlanExcel> excelImportResult = ExcelImportUtil.importExcelMore(file.getInputStream(), CNPlanExcel.class, params);
|
||||||
|
if (excelImportResult.isVerifyFail()) {
|
||||||
|
// 此处前端要做特殊处理,具体可以参考技术监督的数据导入
|
||||||
|
Workbook failWorkbook = excelImportResult.getFailWorkbook();
|
||||||
|
PoiUtil.exportFileByWorkbook(failWorkbook, "非法检测计划数据.xlsx", response);
|
||||||
|
} else {
|
||||||
|
planExcelList = excelImportResult.getList();
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.IMPORT_DATA_FAIL);
|
||||||
|
}
|
||||||
|
if (ObjectUtil.isNotEmpty(planExcelList)) {
|
||||||
|
this.importCNPlan(planExcelList, patternId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 二楼导入检测计划
|
||||||
|
*
|
||||||
|
* @param planExcelList
|
||||||
|
* @param patternId
|
||||||
|
*/
|
||||||
|
@Transactional
|
||||||
|
public void importCNPlan(List<CNPlanExcel> planExcelList, String patternId) {
|
||||||
|
List<AdPlan> adPlans = BeanUtil.copyToList(planExcelList, AdPlan.class);
|
||||||
|
|
||||||
|
String patternCode = dictDataService.getDictDataById(patternId).getCode();
|
||||||
|
for (int i = 0; i < adPlans.size(); i++) {
|
||||||
|
CNPlanExcel planExcel = planExcelList.get(i);
|
||||||
|
AdPlanParam adPlanParam = new AdPlanParam();
|
||||||
|
adPlanParam.setName(planExcel.getName());
|
||||||
|
adPlanParam.setPattern(patternId);
|
||||||
|
checkRepeat(adPlanParam, false);
|
||||||
|
|
||||||
|
String planId = UUID.randomUUID().toString().replaceAll("-", "");
|
||||||
|
adPlans.get(i).setId(planId);
|
||||||
|
adPlans.get(i).setPattern(patternId);
|
||||||
|
Integer code = this.generateCode();
|
||||||
|
adPlans.get(i).setCode(code);
|
||||||
|
|
||||||
|
tableGenService.deleteTable(Arrays.asList(code.toString()));
|
||||||
|
tableGenService.genAdNonHarmonicTable(code.toString());
|
||||||
|
|
||||||
|
String source = planExcel.getSource();
|
||||||
|
String[] sourceNames = source.split(StrUtil.COMMA);
|
||||||
|
// 若非比对模式,检测源、数据源有2个以上时,不导入
|
||||||
|
if (!PatternEnum.CONTRAST.getValue().equals(patternCode) && sourceNames.length > 1) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.IMPORT_SOURCE_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
String datasource = planExcel.getDatasourceId();
|
||||||
|
String[] datasourceIds = datasource.split(StrUtil.COMMA);
|
||||||
|
// 若非比对模式,数据源有2个以上时,不导入
|
||||||
|
if (!PatternEnum.CONTRAST.getValue().equals(patternCode) && datasourceIds.length > 1) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.IMPORT_DATASOURCE_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> sourceIds = pqSourceService.listPqSourceIdByName(sourceNames);
|
||||||
|
adPlanSourceService.addAdPlanSource(planId, sourceIds);
|
||||||
|
|
||||||
|
List<CNDevExcel> cnDevExcelList = planExcel.getDevices();
|
||||||
|
pqDevService.importCNDev(cnDevExcelList, patternId, planId);
|
||||||
|
}
|
||||||
|
// 逆向可视化
|
||||||
|
this.reverseVisualize(adPlans);
|
||||||
|
this.saveBatch(adPlans);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Transactional
|
||||||
|
public void importProvincePlan(MultipartFile file, String patternId, HttpServletResponse response) {
|
||||||
|
ImportParams params = new ImportParams();
|
||||||
|
params.setStartSheetIndex(0);
|
||||||
|
params.setSheetNum(1);
|
||||||
|
params.setHeadRows(2);
|
||||||
|
params.setNeedVerify(true);
|
||||||
|
|
||||||
|
List<ProvincePlanExcel> planExcelList = null;
|
||||||
|
try {
|
||||||
|
ExcelImportResult<ProvincePlanExcel> excelImportResult = ExcelImportUtil.importExcelMore(file.getInputStream(), ProvincePlanExcel.class, params);
|
||||||
|
if (excelImportResult.isVerifyFail()) {
|
||||||
|
// 此处前端要做特殊处理,具体可以参考技术监督的数据导入
|
||||||
|
Workbook failWorkbook = excelImportResult.getFailWorkbook();
|
||||||
|
PoiUtil.exportFileByWorkbook(failWorkbook, "非法检测计划数据.xlsx", response);
|
||||||
|
} else {
|
||||||
|
planExcelList = excelImportResult.getList();
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.IMPORT_DATA_FAIL);
|
||||||
|
}
|
||||||
|
if (ObjectUtil.isNotEmpty(planExcelList)) {
|
||||||
|
this.importProvincePlan(planExcelList, patternId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 省级平台导入检测计划
|
||||||
|
*
|
||||||
|
* @param planExcelList
|
||||||
|
* @param patternId
|
||||||
|
*/
|
||||||
|
public void importProvincePlan(List<ProvincePlanExcel> planExcelList, String patternId) {
|
||||||
|
List<AdPlan> adPlans = BeanUtil.copyToList(planExcelList, AdPlan.class);
|
||||||
|
|
||||||
|
String patternCode = dictDataService.getDictDataById(patternId).getCode();
|
||||||
|
for (int i = 0; i < adPlans.size(); i++) {
|
||||||
|
ProvincePlanExcel planExcel = planExcelList.get(i);
|
||||||
|
AdPlanParam adPlanParam = new AdPlanParam();
|
||||||
|
adPlanParam.setName(planExcel.getName());
|
||||||
|
adPlanParam.setPattern(patternId);
|
||||||
|
checkRepeat(adPlanParam, false);
|
||||||
|
|
||||||
|
String planId = UUID.randomUUID().toString().replaceAll("-", "");
|
||||||
|
adPlans.get(i).setId(planId);
|
||||||
|
adPlans.get(i).setPattern(patternId);
|
||||||
|
Integer code = this.generateCode();
|
||||||
|
adPlans.get(i).setCode(code);
|
||||||
|
|
||||||
|
tableGenService.deleteTable(Arrays.asList(code.toString()));
|
||||||
|
tableGenService.genAdNonHarmonicTable(code.toString());
|
||||||
|
|
||||||
|
String source = planExcel.getSource();
|
||||||
|
String[] sourceNames = source.split(StrUtil.COMMA);
|
||||||
|
// 若非比对模式,检测源、数据源有2个以上时,不导入
|
||||||
|
if (!PatternEnum.CONTRAST.getValue().equals(patternCode) && sourceNames.length > 1) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.IMPORT_SOURCE_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
String datasource = planExcel.getDatasourceId();
|
||||||
|
String[] datasourceIds = datasource.split(StrUtil.COMMA);
|
||||||
|
// 若非比对模式,数据源有2个以上时,不导入
|
||||||
|
if (!PatternEnum.CONTRAST.getValue().equals(patternCode) && datasourceIds.length > 1) {
|
||||||
|
throw new BusinessException(DetectionResponseEnum.IMPORT_DATASOURCE_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> sourceIds = pqSourceService.listPqSourceIdByName(sourceNames);
|
||||||
|
adPlanSourceService.addAdPlanSource(planId, sourceIds);
|
||||||
|
|
||||||
|
List<ProvinceDevExcel> cnDevExcelList = planExcel.getDevices();
|
||||||
|
pqDevService.importProvinceDev(cnDevExcelList, patternId, planId);
|
||||||
|
}
|
||||||
|
// 逆向可视化
|
||||||
|
this.reverseVisualize(adPlans);
|
||||||
|
this.saveBatch(adPlans);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取查询条件wrapper
|
||||||
|
*
|
||||||
|
* @param queryParam 查询条件
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private Wrapper getQueryWrapper(AdPlanParam.QueryParam queryParam) {
|
||||||
|
QueryWrapper<AdPlan> queryWrapper = new QueryWrapper<>();
|
||||||
|
if (ObjectUtil.isNotNull(queryParam)) {
|
||||||
|
queryWrapper.eq(StrUtil.isNotBlank(queryParam.getPattern()), "ad_plan.pattern", queryParam.getPattern())
|
||||||
|
.like(StrUtil.isNotBlank(queryParam.getName()), "ad_plan.name", queryParam.getName())
|
||||||
|
.eq(ObjectUtil.isNotNull(queryParam.getTestState()), "ad_plan.Test_State", queryParam.getTestState())
|
||||||
|
.eq(ObjectUtil.isNotNull(queryParam.getReportState()), "ad_plan.Report_State", queryParam.getReportState())
|
||||||
|
.eq(ObjectUtil.isNotNull(queryParam.getResult()), "ad_plan.result", queryParam.getResult());
|
||||||
|
}
|
||||||
|
queryWrapper.eq("ad_plan.state", DataStateEnum.ENABLE.getCode()).orderByDesc("Create_Time");
|
||||||
|
return queryWrapper;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取备注信息
|
* 获取备注信息
|
||||||
@@ -643,7 +864,7 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
}
|
}
|
||||||
int count = this.count(queryWrapper);
|
int count = this.count(queryWrapper);
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
throw new BusinessException(PlanResponseEnum.PLAN_REPEATED);
|
throw new BusinessException(DetectionResponseEnum.PLAN_REPEATED);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -798,10 +1019,22 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<PullDown> getPullDownList() {
|
private List<PullDown> getPullDownList(SceneEnum scene) {
|
||||||
List<PullDown> pullDowns = new ArrayList<>();
|
List<PullDown> pullDowns = new ArrayList<>();
|
||||||
|
|
||||||
PullDown pullDown = null;
|
PullDown pullDown = null;
|
||||||
|
// 数据源
|
||||||
|
DictType dictType = dictTypeService.getByCode("Datasource");
|
||||||
|
if (ObjectUtil.isNotNull(dictType)) {
|
||||||
|
List<DictData> dictDataList = dictDataService.getDictDataByTypeId(dictType.getId());
|
||||||
|
|
||||||
|
pullDown = new PullDown();
|
||||||
|
pullDown.setFirstCol(2);
|
||||||
|
pullDown.setLastCol(2);
|
||||||
|
pullDown.setStrings(dictDataList.stream().map(DictData::getName).collect(Collectors.toList()));
|
||||||
|
pullDowns.add(pullDown);
|
||||||
|
}
|
||||||
|
|
||||||
// 检测脚本
|
// 检测脚本
|
||||||
List<Map<String, Object>> maps1 = pqScriptService.listAllPqScript(null);
|
List<Map<String, Object>> maps1 = pqScriptService.listAllPqScript(null);
|
||||||
List<String> scriptNameList = maps1.stream().map(m -> (String) m.get("name")).collect(Collectors.toList());
|
List<String> scriptNameList = maps1.stream().map(m -> (String) m.get("name")).collect(Collectors.toList());
|
||||||
@@ -847,56 +1080,20 @@ public class AdPlanServiceImpl extends ServiceImpl<AdPlanMapper, AdPlan> impleme
|
|||||||
pullDown.setStrings(Arrays.asList(CheckResultEnum.UNCHECKED.getMsg(), CheckResultEnum.ACCORD.getMsg(), CheckResultEnum.UNCHECKED.getMsg()));
|
pullDown.setStrings(Arrays.asList(CheckResultEnum.UNCHECKED.getMsg(), CheckResultEnum.ACCORD.getMsg(), CheckResultEnum.UNCHECKED.getMsg()));
|
||||||
pullDowns.add(pullDown);
|
pullDowns.add(pullDown);
|
||||||
|
|
||||||
// 预投计划
|
switch (scene) {
|
||||||
List<DictData> dictDataList = null;
|
case PROVINCE_PLATFORM:
|
||||||
pullDown = new PullDown();
|
List<PullDown> provinceDevPullDownList = pqDevService.getProvinceDevPullDownList(9);
|
||||||
|
pullDowns.addAll(provinceDevPullDownList);
|
||||||
DictType dictType = dictTypeService.getByCode("Preinvestment_Plan");
|
break;
|
||||||
if (ObjectUtil.isNotNull(dictType)) {
|
case LEAVE_FACTORY_TEST:
|
||||||
dictDataList = dictDataService.getDictDataByTypeId(dictType.getId());
|
List<PullDown> cnDevPullDownList = pqDevService.getCNDevPullDownList(9);
|
||||||
|
pullDowns.addAll(cnDevPullDownList);
|
||||||
pullDown = new PullDown();
|
break;
|
||||||
pullDown.setFirstCol(9);
|
case SELF_TEST:
|
||||||
pullDown.setLastCol(9);
|
break;
|
||||||
pullDown.setStrings(dictDataList.stream().map(DictData::getName).collect(Collectors.toList()));
|
default:
|
||||||
pullDowns.add(pullDown);
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 设备类型
|
|
||||||
pullDown = new PullDown();
|
|
||||||
pullDown.setFirstCol(11);
|
|
||||||
pullDown.setLastCol(11);
|
|
||||||
pullDown.setStrings(devTypeService.listAll().stream().map(DevType::getName).collect(Collectors.toList()));
|
|
||||||
pullDowns.add(pullDown);
|
|
||||||
|
|
||||||
// 通讯协议
|
|
||||||
dictType = dictTypeService.getByCode("Protocol");
|
|
||||||
if (ObjectUtil.isNotNull(dictType)) {
|
|
||||||
dictDataList = dictDataService.getDictDataByTypeId(dictType.getId());
|
|
||||||
|
|
||||||
pullDown = new PullDown();
|
|
||||||
pullDown.setFirstCol(12);
|
|
||||||
pullDown.setLastCol(12);
|
|
||||||
pullDown.setStrings(dictDataList.stream().map(DictData::getName).collect(Collectors.toList()));
|
|
||||||
pullDowns.add(pullDown);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 是否为加密版本
|
|
||||||
pullDown = new PullDown();
|
|
||||||
pullDown.setFirstCol(13);
|
|
||||||
pullDown.setLastCol(13);
|
|
||||||
pullDown.setStrings(Arrays.asList("是", "否"));
|
|
||||||
pullDowns.add(pullDown);
|
|
||||||
|
|
||||||
|
|
||||||
// 是否支持系数校准
|
|
||||||
pullDown = new PullDown();
|
|
||||||
pullDown.setFirstCol(16);
|
|
||||||
pullDown.setLastCol(16);
|
|
||||||
pullDown.setStrings(Arrays.asList("是", "否"));
|
|
||||||
pullDowns.add(pullDown);
|
|
||||||
|
|
||||||
|
|
||||||
return pullDowns;
|
return pullDowns;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ public class AdPlanSourceServiceImpl extends ServiceImpl<AdPlanSourceMapper, AdP
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean addAdPlanSource(String planId, List<String> sourceIds) {
|
public boolean addAdPlanSource(String planId, List<String> sourceIds) {
|
||||||
List<AdPlanSource> adPlanSourceList = new ArrayList<>();
|
List<AdPlanSource> adPlanSourceList = new ArrayList<>();
|
||||||
for (String sourceId : sourceIds) {
|
for (String sourceId : sourceIds) {
|
||||||
@@ -42,7 +42,7 @@ public class AdPlanSourceServiceImpl extends ServiceImpl<AdPlanSourceMapper, AdP
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deleteAdPlanSourceByPlanIds(List<String> planIds) {
|
public boolean deleteAdPlanSourceByPlanIds(List<String> planIds) {
|
||||||
QueryWrapper<AdPlanSource> queryWrapper = new QueryWrapper<>();
|
QueryWrapper<AdPlanSource> queryWrapper = new QueryWrapper<>();
|
||||||
queryWrapper.in("ad_plan_source.Plan_Id", planIds);
|
queryWrapper.in("ad_plan_source.Plan_Id", planIds);
|
||||||
@@ -50,7 +50,7 @@ public class AdPlanSourceServiceImpl extends ServiceImpl<AdPlanSourceMapper, AdP
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updateAdPlanSource(String planId, List<String> sourceIds) {
|
public boolean updateAdPlanSource(String planId, List<String> sourceIds) {
|
||||||
this.deleteAdPlanSourceByPlanIds(Collections.singletonList(planId));
|
this.deleteAdPlanSourceByPlanIds(Collections.singletonList(planId));
|
||||||
this.addAdPlanSource(planId, sourceIds);
|
this.addAdPlanSource(planId, sourceIds);
|
||||||
|
|||||||
@@ -1,43 +1,45 @@
|
|||||||
package com.njcn.gather.device.pojo.constant;
|
package com.njcn.gather.pojo.constant;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author caozehui
|
* @author caozehui
|
||||||
* @date 2024/11/06
|
* @data 2025-03-28
|
||||||
*/
|
*/
|
||||||
public interface DevValidMessage {
|
public interface DetectionValidMessage {
|
||||||
|
|
||||||
|
String SOURCE_ID_NOT_BLANK = "检测源id不能为空";
|
||||||
String ID_NOT_BLANK = "id不能为空,请检查id参数";
|
String ID_NOT_BLANK = "id不能为空,请检查id参数";
|
||||||
|
|
||||||
String ID_FORMAT_ERROR = "id格式错误,请检查id参数";
|
String ID_FORMAT_ERROR = "id格式错误,请检查id参数";
|
||||||
|
String NAME_NOT_BLANK = "名称不能为空";
|
||||||
|
String ICD_NAME_FORMAT_ERROR = "名称格式错误,只能包含字母、数字、中文、下划线、中划线、点号,长度为1-50个字符";
|
||||||
|
String ICD_PATH_NOT_BLANK = "icd存储路径不能为空";
|
||||||
|
String ICD_PATH_FORMAT_ERROR = "ICD路径格式错误";
|
||||||
|
String ICD_NOT_BLANK = "ICD不能为空";
|
||||||
|
String POWER_NOT_BLANK = "工作电源不能为空";
|
||||||
|
String VOLT_NOT_BLANK = "额定电压不能为空";
|
||||||
|
String CURR_NOT_BLANK = "额定电流不能为空";
|
||||||
|
String CHNS_NOT_BLANK = "通道数不能为空";
|
||||||
|
String DEV_CHNS_RANGE_ERROR = "通道数格式错误";
|
||||||
|
String INDEX_NOT_NULL = "index不能为空";
|
||||||
|
String VALUE_TYPE_NOT_BLANK = "脚本值类型不能为空";
|
||||||
|
String SCRIPT_NAME_FORMAT_ERROR = "脚本名称格式错误,只能包含字母、数字、中文、下划线、中划线、点号,长度为1-50个字符";
|
||||||
|
String SCRIPT_VOLT_FORMAT_ERROR = "检测脚本额定电压格式错误,请检查ratedVolt参数";
|
||||||
|
String SCRIPT_CURR_FORMAT_ERROR = "检测脚本额定电流格式错误,请检查ratedCurr参数";
|
||||||
String PORT_RANGE_ERROR = "端口号范围错误,请检查port参数";
|
String PORT_RANGE_ERROR = "端口号范围错误,请检查port参数";
|
||||||
|
|
||||||
String NAME_NOT_BLANK = "名称不能为空,请检查name参数";
|
|
||||||
|
|
||||||
String NAME_FORMAT_ERROR = "名称格式错误,请检查name参数";
|
String NAME_FORMAT_ERROR = "名称格式错误,请检查name参数";
|
||||||
|
|
||||||
String PATTERN_NOT_BLANK = "模式不能为空,请检查pattern参数";
|
String PATTERN_NOT_BLANK = "模式不能为空,请检查pattern参数";
|
||||||
|
|
||||||
String DEV_TYPE_NOT_BLANK = "设备类型不能为空";
|
String DEV_TYPE_NOT_BLANK = "设备类型不能为空";
|
||||||
|
|
||||||
String DEV_CHNS_NOT_NULL = "设备通道系数不能为空,请检查devChns参数";
|
|
||||||
|
|
||||||
String DEV_VOLT_NOT_NULL = "额定电压不能为空,请检查devVolt参数";
|
|
||||||
|
|
||||||
String DEV_CURR_NOT_NULL = "额定电流不能为空,请检查devCurr参数";
|
|
||||||
|
|
||||||
String MANUFACTURER_NOT_BLANK = "设备厂家不能为空,请检查manufacturer参数";
|
String MANUFACTURER_NOT_BLANK = "设备厂家不能为空,请检查manufacturer参数";
|
||||||
|
|
||||||
String CREATEDATETIME_NOT_NULL = "出厂日期不能为空,请检查producedDate参数";
|
String CREATEDATETIME_NOT_NULL = "出厂日期不能为空,请检查producedDate参数";
|
||||||
|
|
||||||
String CREATEDATETIME_FORMAT_ERROR = "出厂日期格式错误,请检查createDateTime参数";
|
|
||||||
|
|
||||||
String FACTORYNO_NOT_BLANK = "出厂编号不能为空,请检查factoryNo参数";
|
String FACTORYNO_NOT_BLANK = "出厂编号不能为空,请检查factoryNo参数";
|
||||||
|
|
||||||
String FIRMWARE_NOT_BLANK = "固件版本不能为空,请检查firmware参数";
|
|
||||||
|
|
||||||
String SOFTWARE_NOT_BLANK = "软件版本不能为空,请检查software参数";
|
|
||||||
|
|
||||||
String PROTOCOL_NOT_BLANK = "通讯协议不能为空,请检查protocol参数";
|
String PROTOCOL_NOT_BLANK = "通讯协议不能为空,请检查protocol参数";
|
||||||
|
|
||||||
String IP_NOT_BLANK = "IP地址不能为空,请检查ip参数";
|
String IP_NOT_BLANK = "IP地址不能为空,请检查ip参数";
|
||||||
@@ -102,18 +104,6 @@ public interface DevValidMessage {
|
|||||||
|
|
||||||
String ERR_SYS_DTLS_SCRIPT_TYPE_FORMAT_ERROR = "脚本项类型格式错误,请检查scriptType参数";
|
String ERR_SYS_DTLS_SCRIPT_TYPE_FORMAT_ERROR = "脚本项类型格式错误,请检查scriptType参数";
|
||||||
|
|
||||||
String START_VALUE_NOT_NULL = "起始值不能为空,请检查startValue参数";
|
|
||||||
|
|
||||||
String START_FLAG_NOT_NULL = "是否包含起始值不能为空,请检查startFlag参数";
|
|
||||||
|
|
||||||
String END_VALUE_NOT_NULL = "结束值不能为空,请检查endValue参数";
|
|
||||||
|
|
||||||
String END_FLAG_NOT_NULL = "是否包含结束值不能为空,请检查endFlag参数";
|
|
||||||
|
|
||||||
String CONDITION_TYPE_NOT_BLANK = "判断条件类型不能为空,请检查conditionType参数";
|
|
||||||
|
|
||||||
String ERROR_VALUE_FORMAT_ERROR = "误差值格式错误,请检查errorValue参数";
|
|
||||||
|
|
||||||
String MAX_ERROR_VALUE_NOT_NULL = "最大误差值不能为空,请检查maxErrorValue参数";
|
String MAX_ERROR_VALUE_NOT_NULL = "最大误差值不能为空,请检查maxErrorValue参数";
|
||||||
|
|
||||||
String ERROR_VALUE_TYPE_NOT_BLANK = "误差值类型不能为空,请检查errorValueType参数";
|
String ERROR_VALUE_TYPE_NOT_BLANK = "误差值类型不能为空,请检查errorValueType参数";
|
||||||
@@ -124,18 +114,6 @@ public interface DevValidMessage {
|
|||||||
|
|
||||||
String ENABLE_NOT_NULL = "状态不能为空,请检查enable参数";
|
String ENABLE_NOT_NULL = "状态不能为空,请检查enable参数";
|
||||||
|
|
||||||
String PQ_SOURCE_NAME_FORMAT_ERROR = "检测源名称格式错误,请检查pqSourceName参数";
|
|
||||||
|
|
||||||
String PQ_SOURCE_PARAMETER_ID_NOT_BLANK = "检测源参数ID不能为空,请检查pqSourceParameterId参数";
|
|
||||||
|
|
||||||
String PQ_SOURCE_PARAMETER_PID_NOT_BLANK = "检测源参数PID不能为空,请检查pqSourceParameterId参数";
|
|
||||||
|
|
||||||
String PQ_SOURCE_PARAMETER_TYPE_NOT_BLANK = "检测源参数类型不能为空,请检查pqSourceParameterType参数";
|
|
||||||
|
|
||||||
String PQ_SOURCE_PARAMETER_REMARK_NOT_BLANK = "检测源参数描述不能为空,请检查pqSourceParameterRemark参数";
|
|
||||||
|
|
||||||
String PQ_SOURCE_PARAMETER_VALUE_NOT_BLANK = "参数值不能为空,请检查pqSourceParameterValue参数";
|
|
||||||
|
|
||||||
String DEV_ID_NOT_BLANK = "设备ID不能为空";
|
String DEV_ID_NOT_BLANK = "设备ID不能为空";
|
||||||
|
|
||||||
String DEV_ID_FORMAT_ERROR = "设备ID格式错误";
|
String DEV_ID_FORMAT_ERROR = "设备ID格式错误";
|
||||||
@@ -180,10 +158,6 @@ public interface DevValidMessage {
|
|||||||
|
|
||||||
String CHECK_RESULT_FORMAT_ERROR = "检测结果格式错误";
|
String CHECK_RESULT_FORMAT_ERROR = "检测结果格式错误";
|
||||||
|
|
||||||
String DOCUMENT_STATE_FORMAT_ERROR = "归档状态格式错误";
|
|
||||||
|
|
||||||
String MONITOR_CODE_FORMAT_ERROR = "监测点编码格式错误";
|
|
||||||
|
|
||||||
String MONITOR_NUM_NOT_NULL = "监测点序号不能为空";
|
String MONITOR_NUM_NOT_NULL = "监测点序号不能为空";
|
||||||
|
|
||||||
String FACTOR_FLAG_FORMAT_ERROR = "是否支持系数校准格式错误";
|
String FACTOR_FLAG_FORMAT_ERROR = "是否支持系数校准格式错误";
|
||||||
@@ -195,17 +169,9 @@ public interface DevValidMessage {
|
|||||||
String DATASOURCE_NOT_BLANK = "数据源不能为空";
|
String DATASOURCE_NOT_BLANK = "数据源不能为空";
|
||||||
|
|
||||||
String SCRIPT_NOT_BLANK = "检测脚本不能为空";
|
String SCRIPT_NOT_BLANK = "检测脚本不能为空";
|
||||||
|
|
||||||
String ERRORSYS_NOT_BLANK = "误差体系不能为空";
|
String ERRORSYS_NOT_BLANK = "误差体系不能为空";
|
||||||
|
|
||||||
String TIMECHECK_NOT_BLANK = "是否做守时检测不能为空";
|
|
||||||
|
|
||||||
String FACTOR_FLAG_NOT_BLANK = "是否支持系数校准不能为空";
|
|
||||||
|
|
||||||
String CONDITION_TYPE_FORMAT_ERROR = "判断条件类型格式错误,请检查conditionType参数";
|
|
||||||
|
|
||||||
String SORT_NOT_NULL = "排序不能为空";
|
String SORT_NOT_NULL = "排序不能为空";
|
||||||
String PREINVESTMENT_PLAN_NOT_BLANK = "预投资计划不能为空";
|
String PREINVESTMENT_PLAN_NOT_BLANK = "预投资计划不能为空";
|
||||||
String TIMECHECK_NOT_NULL = "是否做守时检测不能为空";
|
String TIMECHECK_NOT_NULL = "是否做守时检测不能为空";
|
||||||
String CREATEID_NOT_BLANK = "设备序列号不能为空";
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
package com.njcn.gather.pojo.enums;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author caozehui
|
||||||
|
* @data 2025-03-26
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
public enum DetectionResponseEnum {
|
||||||
|
/**
|
||||||
|
* 检测模块异常响应码的范围:
|
||||||
|
* A02000 ~ A02
|
||||||
|
*/
|
||||||
|
DEV_TYPE_NAME_REPEAT("A02000", "设备类型名称重复"),
|
||||||
|
SOURCE_BOUND_NOT_DELETE("A02001", "源已被计划所绑定,无法删除!"),
|
||||||
|
SCRIPT_BOUND_NOT_DELETE("A02003", "脚本已被计划所绑定,无法删除!"),
|
||||||
|
RAW_DATA_NOT_EXIST("A02004", "原始数据不存在"),
|
||||||
|
PLAN_REPEATED("A02005", "当前模式下,该计划已存在"),
|
||||||
|
PLAN_NOT_EXIST("A02006", "该计划不存在"),
|
||||||
|
SCRIPT_RELATE_DICT_NOT_EXIST("A02007", "脚本关联的字典不存在"),
|
||||||
|
NOT_CHECKED_PLAN_CANNOT_ANALYSE("A02008", "只有检测状态为检测完成的计划才能进行统计分析"),
|
||||||
|
CANNOT_CHANGE_SCRIPT_WHEN_CHECKING("A02009", "只有检测状态为未检时,才能修改检测脚本"),
|
||||||
|
CANNOT_CHANGE_ERROR_SYS_WHEN_CHECKING("A02010", "只有检测状态为未检时,才能修改误差体系"),
|
||||||
|
CANNOT_CHANGE_REPORT_WHEN_CHECKING("A02011", "只有检测状态为未检时,才能修改绑定报告模板"),
|
||||||
|
ICD_PATH_NAME_REPEAT("A02012", "icd名称重复"),
|
||||||
|
ERR_SYS_BOUND_NOT_DELETE("A02013", "误差体系已被计划所绑定,无法删除!"),
|
||||||
|
ERR_SYS_REPEAT("A02014", "已存在相同标准号、标准推行年份、适用设备等级的误差体系!"),
|
||||||
|
|
||||||
|
|
||||||
|
IMPORT_DATA_FAIL("A02040", "导入数据失败"),
|
||||||
|
SERIES_AND_DEVKEY_NOT_BLANK("A02041", "当为加密设备时,加密设备的序列号和设备密钥不能为空"),
|
||||||
|
PQ_SOURCE_GEN_NAME_ERROR("A02042", "检测源生成名称出错"),
|
||||||
|
ERR_SOURCE_GEN_NAME_ERROR("A02043", "误差体系生成名称出错"),
|
||||||
|
PQ_ERRSYS_GEN_NAME_ERROR("A02044", "误差体系生成名称出错"),
|
||||||
|
PLAN_HAS_DEVICE_BIND("A02045", "检测计划下已绑定设备,请先解绑设备"),
|
||||||
|
PQ_DEV_REPEAT("A02046", "重复的被检设备"),
|
||||||
|
PQ_DEV_HAS_MONITOR("A02047", "该设备下关联有监测点,请先移除监测点"),
|
||||||
|
HAS_NOT_UNCHECKED_DEVICE("A02048", "设备在检测中或已被检测过,请勿解除绑定"),
|
||||||
|
IMPORT_PLAN_DATA_FAIL("A02049", "导入的检测计划为空"),
|
||||||
|
IMPORT_DATA_FORMAT_FAIL("A02050", "导入数据格式错误"),
|
||||||
|
IMPORT_SOURCE_ERROR("A02051", "当前模式下一个检测计划只能有一个检测源"),
|
||||||
|
IMPORT_DATASOURCE_ERROR("A02052", "当前模式下一个检测计划只能有一个数据源"),
|
||||||
|
DEV_UN_CHECKED("A02053", "装置还未检测完成!"),
|
||||||
|
DEV_UN_REPORT("A02054", "装置报告未生成!"),
|
||||||
|
DEVICE_DIS_ERROR("A02055", "装置配置异常"),
|
||||||
|
DEVICE_DELETE("A02056", "设备无法删除,已绑定计划!"),
|
||||||
|
CREATE_DIRECTORY_FAILED("A02057", "创建目录失败"),
|
||||||
|
DELETE_DIRECTORY_FAILED("A02058", "删除目录失败");
|
||||||
|
|
||||||
|
private final String code;
|
||||||
|
|
||||||
|
private final String message;
|
||||||
|
|
||||||
|
DetectionResponseEnum(String code, String message) {
|
||||||
|
this.code = code;
|
||||||
|
this.message = message;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,15 @@
|
|||||||
package com.njcn.gather.report.controller;
|
package com.njcn.gather.report.controller;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
import com.njcn.common.pojo.annotation.OperateInfo;
|
import com.njcn.common.pojo.annotation.OperateInfo;
|
||||||
|
import com.njcn.common.pojo.constant.OperateType;
|
||||||
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
||||||
import com.njcn.common.pojo.response.HttpResult;
|
import com.njcn.common.pojo.response.HttpResult;
|
||||||
import com.njcn.common.utils.LogUtil;
|
import com.njcn.common.utils.LogUtil;
|
||||||
import com.njcn.gather.report.pojo.DevReportParam;
|
import com.njcn.gather.report.pojo.DevReportParam;
|
||||||
import com.njcn.gather.report.service.IReportService;
|
import com.njcn.gather.report.pojo.param.ReportParam;
|
||||||
|
import com.njcn.gather.report.pojo.vo.PqReportVO;
|
||||||
|
import com.njcn.gather.report.service.IPqReportService;
|
||||||
import com.njcn.web.controller.BaseController;
|
import com.njcn.web.controller.BaseController;
|
||||||
import com.njcn.web.utils.HttpResultUtil;
|
import com.njcn.web.utils.HttpResultUtil;
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
@@ -13,9 +17,12 @@ import io.swagger.annotations.ApiImplicitParam;
|
|||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.validation.annotation.Validated;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import javax.validation.Valid;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -30,7 +37,7 @@ import javax.servlet.http.HttpServletResponse;
|
|||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class ReportController extends BaseController {
|
public class ReportController extends BaseController {
|
||||||
|
|
||||||
private final IReportService reportService;
|
private final IPqReportService pqReportService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 此方法临时的,给楼下使用,实际需要优化
|
* 此方法临时的,给楼下使用,实际需要优化
|
||||||
@@ -44,7 +51,7 @@ public class ReportController extends BaseController {
|
|||||||
public HttpResult<Object> generateReport(@RequestBody DevReportParam devReportParam) {
|
public HttpResult<Object> generateReport(@RequestBody DevReportParam devReportParam) {
|
||||||
String methodDescribe = getMethodDescribe("generateReport");
|
String methodDescribe = getMethodDescribe("generateReport");
|
||||||
LogUtil.njcnDebug(log, "{},终端参数为:{}", methodDescribe, devReportParam);
|
LogUtil.njcnDebug(log, "{},终端参数为:{}", methodDescribe, devReportParam);
|
||||||
reportService.generateReport(devReportParam);
|
pqReportService.generateReport(devReportParam);
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -58,9 +65,80 @@ public class ReportController extends BaseController {
|
|||||||
public void downloadReport(@RequestBody DevReportParam devReportParam, HttpServletResponse response) {
|
public void downloadReport(@RequestBody DevReportParam devReportParam, HttpServletResponse response) {
|
||||||
String methodDescribe = getMethodDescribe("downloadReport");
|
String methodDescribe = getMethodDescribe("downloadReport");
|
||||||
LogUtil.njcnDebug(log, "{},终端参数为:{}", methodDescribe, devReportParam);
|
LogUtil.njcnDebug(log, "{},终端参数为:{}", methodDescribe, devReportParam);
|
||||||
reportService.downloadReport(devReportParam,response);
|
pqReportService.downloadReport(devReportParam, response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@OperateInfo
|
||||||
|
@PostMapping("/list")
|
||||||
|
@ApiOperation("分页查询报告模板")
|
||||||
|
@ApiImplicitParam(name = "param", value = "查询参数", required = true)
|
||||||
|
public HttpResult<Page<PqReportVO>> list(@RequestBody @Validated ReportParam.QueryParam queryParam) {
|
||||||
|
String methodDescribe = getMethodDescribe("list");
|
||||||
|
LogUtil.njcnDebug(log, "{},查询参数为:{}", methodDescribe, queryParam);
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, pqReportService.list(queryParam), methodDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
|
@OperateInfo
|
||||||
|
@GetMapping("/getById")
|
||||||
|
@ApiOperation("查询报告模板详情")
|
||||||
|
@ApiImplicitParam(name = "param", value = "查询参数", required = true)
|
||||||
|
public HttpResult<PqReportVO> getById(@RequestParam("id") String id) {
|
||||||
|
String methodDescribe = getMethodDescribe("getById");
|
||||||
|
LogUtil.njcnDebug(log, "{},查询参数为:{}", methodDescribe, id);
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, pqReportService.getByReportId(id), methodDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
|
@OperateInfo(operateType = OperateType.ADD)
|
||||||
|
@PostMapping("/add")
|
||||||
|
@ApiOperation("新增报告模板")
|
||||||
|
@ApiImplicitParam(name = "param", value = "报告模板参数", required = true)
|
||||||
|
public HttpResult<Boolean> add(ReportParam reportParam) {
|
||||||
|
String methodDescribe = getMethodDescribe("add");
|
||||||
|
LogUtil.njcnDebug(log, "{},新增参数为:{}", methodDescribe, reportParam);
|
||||||
|
boolean result = pqReportService.add(reportParam);
|
||||||
|
if (result) {
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
|
} else {
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@OperateInfo(operateType = OperateType.UPDATE)
|
||||||
|
@PostMapping("/update")
|
||||||
|
@ApiOperation("更新报告模板")
|
||||||
|
@ApiImplicitParam(name = "param", value = "报告模板参数", required = true)
|
||||||
|
public HttpResult<Boolean> update(ReportParam.UpdateParam reportParam) {
|
||||||
|
String methodDescribe = getMethodDescribe("update");
|
||||||
|
LogUtil.njcnDebug(log, "{},修改参数为:{}", methodDescribe, reportParam);
|
||||||
|
boolean result = pqReportService.update(reportParam);
|
||||||
|
if (result) {
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
|
} else {
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@OperateInfo(operateType = OperateType.DELETE)
|
||||||
|
@PostMapping("/delete")
|
||||||
|
@ApiOperation("删除报告模板")
|
||||||
|
@ApiImplicitParam(name = "param", value = "报告模板参数", required = true)
|
||||||
|
public HttpResult<Boolean> delete(@RequestBody List<String> ids) {
|
||||||
|
String methodDescribe = getMethodDescribe("delete");
|
||||||
|
LogUtil.njcnDebug(log, "{},删除参数为:{}", methodDescribe, ids);
|
||||||
|
boolean result = pqReportService.delete(ids);
|
||||||
|
if (result) {
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
|
} else {
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@OperateInfo
|
||||||
|
@GetMapping("/listAllName")
|
||||||
|
@ApiOperation("查询所有报告模板名称")
|
||||||
|
@ApiImplicitParam(name = "param", value = "查询参数", required = true)
|
||||||
|
public HttpResult<List<String>> listAllName() {
|
||||||
|
String methodDescribe = getMethodDescribe("listAllName");
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, pqReportService.listAllName(), methodDescribe);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
package com.njcn.gather.report.mapper;
|
||||||
|
|
||||||
|
import com.github.yulichang.base.MPJBaseMapper;
|
||||||
|
import com.njcn.gather.report.pojo.po.PqReport;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author makejava
|
||||||
|
* @date 2025-03-19
|
||||||
|
*/
|
||||||
|
public interface PqReportMapper extends MPJBaseMapper<PqReport> {
|
||||||
|
/**
|
||||||
|
* 获取所有已被计划绑定的报告模板id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<String> getBoundReportIds();
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
|
<mapper namespace="com.njcn.gather.report.mapper.PqReportMapper">
|
||||||
|
|
||||||
|
|
||||||
|
<select id="getBoundReportIds" resultType="java.lang.String">
|
||||||
|
select distinct Report_Template_Id from ad_plan where state = 1
|
||||||
|
</select>
|
||||||
|
</mapper>
|
||||||
|
|
||||||
@@ -19,6 +19,16 @@ public class DevReportParam implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String planId;
|
private String planId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计划所对应的表code
|
||||||
|
*/
|
||||||
|
private String planCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 脚本ID
|
||||||
|
*/
|
||||||
|
private String scriptId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 被检设备ID
|
* 被检设备ID
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
package com.njcn.gather.report.pojo.enums;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author caozehui
|
||||||
|
* @data 2025-03-19
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
public enum ReportResponseEnum {
|
||||||
|
|
||||||
|
FILE_UPLOAD_FAILED("A012001", "文件上传失败"),
|
||||||
|
FILE_SUFFIX_ERROR("A012002", "文件后缀错误,请上传.docx文件"),
|
||||||
|
REPORT_REPEATED("A012003", "已存在相同版本、相同名称的报告"),
|
||||||
|
FILE_NOT_NULL("A012004", "上传的文件不能为空"),
|
||||||
|
DELETE_BOUND_REPORT_ERROR("A012005", "已被计划绑定模板的报告不能删除"),
|
||||||
|
FILE_NAME_SAME_ERROR("A012006", "文件名不能相同"),
|
||||||
|
DEVICE_NOT_EXIST("A012007", "请检查装置是否存在!"),
|
||||||
|
DEVICE_TYPE_NOT_EXIST("A012008", "设备类型缺失,请联系管理员!"),
|
||||||
|
REPORT_TEMPLATE_NOT_EXIST("A012009", "报告模板缺失,请联系管理员!"),
|
||||||
|
NO_CHECK_DATA("A012010", "没有检测数据,无法生成报告!"),
|
||||||
|
FILE_RENAME_FAILED("A012011", "文件重命名失败"),
|
||||||
|
REPORT_NAME_PATTERN_ERROR("A012012","报告名称格式错误,可包含中文、字母、数字、中划线,长度不能超过50个字符"),
|
||||||
|
REPORT_VERSION_PATTERN_ERROR("A012013","报告版本号格式错误,可包含中文、字母、数字、中划线,点号,长度不能超过50个字符"),
|
||||||
|
FILE_SIZE_ERROR("A012014","文件大小不能超过5MB" );
|
||||||
|
|
||||||
|
private String code;
|
||||||
|
private String message;
|
||||||
|
|
||||||
|
ReportResponseEnum(String code, String message) {
|
||||||
|
this.code = code;
|
||||||
|
this.message = message;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
package com.njcn.gather.report.pojo.param;
|
||||||
|
|
||||||
|
import com.njcn.web.pojo.param.BaseParam;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author caozehui
|
||||||
|
* @data 2025-03-19
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ReportParam {
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "报告模板名称", required = true)
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "版本号", required = true)
|
||||||
|
private String version;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "描述信息", required = true)
|
||||||
|
private String description;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "基础模板文件", required = true)
|
||||||
|
private MultipartFile baseFile;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "检测项模版文件", required = true)
|
||||||
|
private MultipartFile detailFile;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
public static class QueryParam extends BaseParam {
|
||||||
|
@ApiModelProperty(value = "报告模板名称", required = true)
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "版本号", required = true)
|
||||||
|
private String version;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
public static class UpdateParam extends ReportParam {
|
||||||
|
@ApiModelProperty(value = "id", required = true)
|
||||||
|
private String id;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
package com.njcn.gather.report.pojo.po;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author caozehui
|
||||||
|
* @data 2025-03-21
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
public class CellEntity {
|
||||||
|
|
||||||
|
private String cellValue;
|
||||||
|
|
||||||
|
private String width;
|
||||||
|
|
||||||
|
private int rowSpan;
|
||||||
|
|
||||||
|
private int colSpan;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 字体颜色 格式为rgb 例如:FF0000
|
||||||
|
*/
|
||||||
|
private String color;
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
package com.njcn.gather.report.pojo.po;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
import com.njcn.db.mybatisplus.bo.BaseEntity;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author makejava
|
||||||
|
* @date 2025-03-19
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@TableName("pq_report")
|
||||||
|
public class PqReport extends BaseEntity implements Serializable {
|
||||||
|
private static final long serialVersionUID = 582972970946593407L;
|
||||||
|
/**
|
||||||
|
* 报告模板id
|
||||||
|
*/
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 报告模板名称
|
||||||
|
*/
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 版本号
|
||||||
|
*/
|
||||||
|
private String version;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 基础模板文件路径
|
||||||
|
*/
|
||||||
|
private String basePath;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测项模版文件路径
|
||||||
|
*/
|
||||||
|
private String detailPath;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 描述信息
|
||||||
|
*/
|
||||||
|
private String description;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态:0-删除 1-正常
|
||||||
|
*/
|
||||||
|
private Integer state;
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
package com.njcn.gather.report.pojo.vo;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
|
||||||
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||||
|
import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer;
|
||||||
|
import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author caozehui
|
||||||
|
* @data 2025-03-19
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class PqReportVO {
|
||||||
|
/**
|
||||||
|
* 报告模板id
|
||||||
|
*/
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 报告模板名称
|
||||||
|
*/
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 版本号
|
||||||
|
*/
|
||||||
|
private String version;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 基础模板文件路径
|
||||||
|
*/
|
||||||
|
private FileVO baseFileVO;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检测项模版文件路径
|
||||||
|
*/
|
||||||
|
private FileVO detailFileVO;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 描述信息
|
||||||
|
*/
|
||||||
|
private String description;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@JsonDeserialize(using = LocalDateTimeDeserializer.class)
|
||||||
|
@JsonSerialize(using = LocalDateTimeSerializer.class)
|
||||||
|
private LocalDateTime createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态:0-删除 1-正常
|
||||||
|
*/
|
||||||
|
//private Integer state;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public static class FileVO{
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
private String url;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
package com.njcn.gather.report.service;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||||||
|
import com.njcn.gather.report.pojo.DevReportParam;
|
||||||
|
import com.njcn.gather.report.pojo.param.ReportParam;
|
||||||
|
import com.njcn.gather.report.pojo.po.PqReport;
|
||||||
|
import com.njcn.gather.report.pojo.vo.PqReportVO;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author makejava
|
||||||
|
* @date 2025-03-19
|
||||||
|
*/
|
||||||
|
public interface IPqReportService extends IService<PqReport> {
|
||||||
|
/**
|
||||||
|
* 分页查询报告列表
|
||||||
|
*
|
||||||
|
* @param queryParam
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
Page<PqReportVO> list(ReportParam.QueryParam queryParam);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据id查询报告详情
|
||||||
|
*
|
||||||
|
* @param id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
PqReportVO getByReportId(String id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增报告
|
||||||
|
*
|
||||||
|
* @param reportParam
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
boolean add(ReportParam reportParam);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改报告
|
||||||
|
*
|
||||||
|
* @param reportParam
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
boolean update(ReportParam.UpdateParam reportParam);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除报告
|
||||||
|
*
|
||||||
|
* @param ids
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
boolean delete(List<String> ids);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询所有报告名称
|
||||||
|
*
|
||||||
|
* @return key为报告id,value为报告名称
|
||||||
|
*/
|
||||||
|
List<String> listAllName();
|
||||||
|
|
||||||
|
void generateReport(DevReportParam devReportParam);
|
||||||
|
|
||||||
|
void downloadReport(DevReportParam devReportParam, HttpServletResponse response);
|
||||||
|
}
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
package com.njcn.gather.report.service;
|
|
||||||
|
|
||||||
import com.njcn.gather.report.pojo.DevReportParam;
|
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author hongawen
|
|
||||||
* @version 1.0
|
|
||||||
* @data 2025/1/9 20:59
|
|
||||||
*/
|
|
||||||
public interface IReportService {
|
|
||||||
void generateReport(DevReportParam devReportParam);
|
|
||||||
|
|
||||||
void downloadReport(DevReportParam devReportParam, HttpServletResponse response);
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,590 +0,0 @@
|
|||||||
package com.njcn.gather.report.service.impl;
|
|
||||||
|
|
||||||
import cn.hutool.core.collection.CollectionUtil;
|
|
||||||
import cn.hutool.core.date.DatePattern;
|
|
||||||
import cn.hutool.core.date.DateUtil;
|
|
||||||
import cn.hutool.core.text.StrPool;
|
|
||||||
import cn.hutool.json.JSONUtil;
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
||||||
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
|
||||||
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
|
||||||
import com.njcn.common.pojo.exception.BusinessException;
|
|
||||||
import com.njcn.gather.detection.pojo.vo.DetectionData;
|
|
||||||
import com.njcn.gather.device.pojo.enums.DevReportStateEnum;
|
|
||||||
import com.njcn.gather.device.pojo.vo.PqDevVO;
|
|
||||||
import com.njcn.gather.device.service.IPqDevService;
|
|
||||||
import com.njcn.gather.plan.pojo.enums.PlanReportStateEnum;
|
|
||||||
import com.njcn.gather.plan.pojo.po.AdPlan;
|
|
||||||
import com.njcn.gather.plan.service.IAdPlanService;
|
|
||||||
import com.njcn.gather.report.pojo.DevReportParam;
|
|
||||||
import com.njcn.gather.report.service.IReportService;
|
|
||||||
import com.njcn.gather.report.utils.WordUtil;
|
|
||||||
import com.njcn.gather.script.pojo.po.PqScriptCheckData;
|
|
||||||
import com.njcn.gather.script.pojo.po.PqScriptDtls;
|
|
||||||
import com.njcn.gather.script.service.IPqScriptCheckDataService;
|
|
||||||
import com.njcn.gather.script.service.IPqScriptDtlsService;
|
|
||||||
import com.njcn.gather.storage.pojo.param.SingleNonHarmParam;
|
|
||||||
import com.njcn.gather.storage.pojo.po.AdHarmonicResult;
|
|
||||||
import com.njcn.gather.storage.pojo.po.AdNonHarmonicResult;
|
|
||||||
import com.njcn.gather.storage.service.AdHarmonicService;
|
|
||||||
import com.njcn.gather.storage.service.AdNonHarmonicService;
|
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictData;
|
|
||||||
import com.njcn.gather.system.dictionary.service.IDictDataService;
|
|
||||||
import com.njcn.gather.type.pojo.po.DevType;
|
|
||||||
import com.njcn.gather.type.service.IDevTypeService;
|
|
||||||
import com.njcn.web.utils.RequestUtil;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.apache.poi.xwpf.usermodel.XWPFDocument;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.core.io.ClassPathResource;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
|
||||||
import java.io.*;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.math.RoundingMode;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author hongawen
|
|
||||||
* @version 1.0
|
|
||||||
* @data 2025/1/9 21:00
|
|
||||||
*/
|
|
||||||
@Slf4j
|
|
||||||
@Service
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class ReportServiceImpl implements IReportService {
|
|
||||||
|
|
||||||
@Value("${report.template:D:\\template\\}")
|
|
||||||
private String templatePath;
|
|
||||||
|
|
||||||
@Value("${report.reportDir:D:\\report}")
|
|
||||||
private String reportPath;
|
|
||||||
|
|
||||||
private final IPqDevService iPqDevService;
|
|
||||||
|
|
||||||
private final IDictDataService dictDataService;
|
|
||||||
|
|
||||||
private final IAdPlanService adPlanService;
|
|
||||||
|
|
||||||
private final IPqScriptDtlsService pqScriptDtlsService;
|
|
||||||
|
|
||||||
private final IPqScriptCheckDataService pqScriptCheckDataService;
|
|
||||||
|
|
||||||
private final AdNonHarmonicService adNonHarmonicService;
|
|
||||||
|
|
||||||
private final AdHarmonicService adHarmonicService;
|
|
||||||
|
|
||||||
private final IDevTypeService devTypeService;
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void generateReport(DevReportParam devReportParam) {
|
|
||||||
// 根据设备类型找到报告模板
|
|
||||||
PqDevVO pqDevVO = iPqDevService.getPqDevById(devReportParam.getDevId());
|
|
||||||
if (Objects.isNull(pqDevVO)) {
|
|
||||||
throw new BusinessException("请检查装置是否存在!");
|
|
||||||
}
|
|
||||||
// 获取设备型号
|
|
||||||
DevType devType = devTypeService.getById(pqDevVO.getDevType());
|
|
||||||
if (Objects.isNull(devType)) {
|
|
||||||
throw new BusinessException("设备类型缺失,请联系管理员!");
|
|
||||||
}
|
|
||||||
DictData reportName = devTypeService.getReportName(pqDevVO.getDevType());
|
|
||||||
if (Objects.isNull(reportName)) {
|
|
||||||
throw new BusinessException("报告模板缺失,请联系管理员!");
|
|
||||||
}
|
|
||||||
// 读取模板文件
|
|
||||||
ClassPathResource resource = new ClassPathResource("/model/" + reportName.getCode() + ".docx");
|
|
||||||
try (InputStream inputStream = resource.getInputStream()) {
|
|
||||||
// 加载Word文档
|
|
||||||
XWPFDocument baseModelDocument = new XWPFDocument(inputStream);
|
|
||||||
// 处理基础模版中的信息
|
|
||||||
dealBaseModel(baseModelDocument, pqDevVO, devType);
|
|
||||||
// 处理数据页中的信息
|
|
||||||
dealDataModel(baseModelDocument, devReportParam, pqDevVO);
|
|
||||||
// 处理需要输出的目录地址 基础路径+设备类型+装置编号.docx
|
|
||||||
// 最终文件输出的路径
|
|
||||||
String dirPath = reportPath.concat(File.separator).concat(devType.getName());
|
|
||||||
ensureDirectoryExists(dirPath); // 确保目录存在
|
|
||||||
FileOutputStream out = new FileOutputStream(dirPath.concat(File.separator).concat(pqDevVO.getCreateId()).concat(".docx"));
|
|
||||||
// 4. 保存新的Word文档
|
|
||||||
try {
|
|
||||||
baseModelDocument.write(out);
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new BusinessException("生成报告文件失败");
|
|
||||||
}
|
|
||||||
out.close();
|
|
||||||
|
|
||||||
System.out.println("报告生成成功!");
|
|
||||||
|
|
||||||
// 将改设备的报告生成状态调整为已生成
|
|
||||||
iPqDevService.updatePqDevReportState(devReportParam.getDevId(), DevReportStateEnum.GENERATED.getValue());
|
|
||||||
|
|
||||||
// 判断该计划下是否所有设备报告已生成,如果已生成则将计划的报告状态给为已生成
|
|
||||||
int count = iPqDevService.countUnReportDev(devReportParam.getPlanId());
|
|
||||||
LambdaUpdateWrapper<AdPlan> updateWrapper = new LambdaUpdateWrapper<>();
|
|
||||||
updateWrapper.eq(AdPlan::getId, devReportParam.getPlanId());
|
|
||||||
if (count == 0) {
|
|
||||||
updateWrapper.set(AdPlan::getReportState, PlanReportStateEnum.REPORT_STATE_ALL_GENERATED.getValue());
|
|
||||||
} else {
|
|
||||||
updateWrapper.set(AdPlan::getReportState, PlanReportStateEnum.REPORT_STATE_PARTIALLY_GENERATED.getValue());
|
|
||||||
}
|
|
||||||
adPlanService.update(updateWrapper);
|
|
||||||
} catch (IOException e) {
|
|
||||||
log.error("生成报告文件失败", e);
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void downloadReport(DevReportParam devReportParam, HttpServletResponse response) {
|
|
||||||
PqDevVO pqDevVO = iPqDevService.getPqDevById(devReportParam.getDevId());
|
|
||||||
if (Objects.isNull(pqDevVO)) {
|
|
||||||
throw new BusinessException("请检查装置是否存在!");
|
|
||||||
}
|
|
||||||
// 获取设备型号
|
|
||||||
DevType devType = devTypeService.getById(pqDevVO.getDevType());
|
|
||||||
if (Objects.isNull(devType)) {
|
|
||||||
throw new BusinessException("设备类型丢失,请联系管理员!");
|
|
||||||
}
|
|
||||||
// 找到该文件的路径
|
|
||||||
String filePath = reportPath.concat(File.separator).concat(devType.getName()).concat(File.separator).concat(pqDevVO.getCreateId()).concat(".docx");
|
|
||||||
File reportFile = new File(filePath);
|
|
||||||
if (!reportFile.exists()) {
|
|
||||||
// 如果文件不存在,则将改设备的报告生成状态调整为未生成
|
|
||||||
iPqDevService.updatePqDevReportState(devReportParam.getDevId(), 0);
|
|
||||||
throw new BusinessException("报告文件不存在,请重新生成报告!");
|
|
||||||
} else {
|
|
||||||
try (FileInputStream fis = new FileInputStream(reportFile);
|
|
||||||
OutputStream os = response.getOutputStream()) {
|
|
||||||
|
|
||||||
// 设置响应头
|
|
||||||
response.setContentType("application/vnd.openxmlformats-officedocument.wordprocessingml.document");
|
|
||||||
String fileName = pqDevVO.getCreateId() + ".docx";
|
|
||||||
response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
|
|
||||||
|
|
||||||
// 将文件内容写入响应输出流
|
|
||||||
byte[] buffer = new byte[1024];
|
|
||||||
int bytesRead;
|
|
||||||
while ((bytesRead = fis.read(buffer)) != -1) {
|
|
||||||
os.write(buffer, 0, bytesRead);
|
|
||||||
}
|
|
||||||
// 刷新输出流
|
|
||||||
os.flush();
|
|
||||||
} catch (IOException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 处理基础模版中的信息,非数据页报告
|
|
||||||
*
|
|
||||||
* @param baseModelDocument 模板文件
|
|
||||||
*/
|
|
||||||
private void dealBaseModel(XWPFDocument baseModelDocument, PqDevVO pqDevVO, DevType devType) {
|
|
||||||
// 首先获取非数据页中需要的信息
|
|
||||||
Map<String, String> baseModelMap = new HashMap<>(16);
|
|
||||||
// 获取设备型号
|
|
||||||
baseModelMap.put("${devType}", devType.getName());
|
|
||||||
// 调试人员,todo... 待咨询曹泽辉如何获取当前用户信息,目前先写死
|
|
||||||
String userName = RequestUtil.getUserName();
|
|
||||||
baseModelMap.put("${userName}", userName);
|
|
||||||
// 调试日期
|
|
||||||
if (pqDevVO.getCheckTime() != null) {
|
|
||||||
baseModelMap.put("${testDate}", DateUtil.format(pqDevVO.getCheckTime(), DatePattern.CHINESE_DATE_PATTERN));
|
|
||||||
} else {
|
|
||||||
baseModelMap.put("${testDate}", DateUtil.format(new Date(), DatePattern.CHINESE_DATE_PATTERN));
|
|
||||||
}
|
|
||||||
// 装置编码
|
|
||||||
baseModelMap.put("${CreateId}", pqDevVO.getCreateId());
|
|
||||||
// 工作电源
|
|
||||||
baseModelMap.put("${power}", devType.getPower());
|
|
||||||
// 额定电流
|
|
||||||
baseModelMap.put("${devCurr}", pqDevVO.getDevCurr().toString().concat("A"));
|
|
||||||
// 额定电压
|
|
||||||
baseModelMap.put("${devVolt}", pqDevVO.getDevVolt().toString().concat("V"));
|
|
||||||
|
|
||||||
// 共有多少通道参与测试
|
|
||||||
// if (CollectionUtil.isEmpty(pqDevById.getMonitorList())) {
|
|
||||||
// baseModelMap.put("${count}", "0");
|
|
||||||
// } else {
|
|
||||||
// baseModelMap.put("${count}", pqDevById.getMonitorList().size() + "");
|
|
||||||
// }
|
|
||||||
|
|
||||||
baseModelMap.put("${count}", pqDevVO.getDevChns().toString());
|
|
||||||
|
|
||||||
// 替换模板中的信息,避免信息丢失,段落和表格均参与替换
|
|
||||||
WordUtil.replacePlaceholdersInParagraphs(baseModelDocument, baseModelMap);
|
|
||||||
WordUtil.replacePlaceholdersInTables(baseModelDocument, baseModelMap);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取数据页的信息
|
|
||||||
*
|
|
||||||
* @param baseModelDocument 非数据页的内容
|
|
||||||
* @param devReportParam 查询参数
|
|
||||||
*/
|
|
||||||
private void dealDataModel(XWPFDocument baseModelDocument, DevReportParam devReportParam, PqDevVO pqDevVO) throws IOException {
|
|
||||||
AdPlan adPlan = adPlanService.getById(devReportParam.getPlanId());
|
|
||||||
String scriptId = adPlan.getScriptId();
|
|
||||||
Integer devChns = pqDevVO.getDevChns();
|
|
||||||
for (int i = 1; i <= devChns; i++) {
|
|
||||||
ClassPathResource resource = new ClassPathResource("/model/report_table.docx");
|
|
||||||
XWPFDocument dataModelDocumentTemp = new XWPFDocument(resource.getInputStream());
|
|
||||||
|
|
||||||
SingleNonHarmParam singleNonHarmParam = new SingleNonHarmParam();
|
|
||||||
singleNonHarmParam.setPlanCode(adPlan.getCode());
|
|
||||||
singleNonHarmParam.setDevId(pqDevVO.getId());
|
|
||||||
singleNonHarmParam.setChannelNo(i);
|
|
||||||
|
|
||||||
// 获取数据
|
|
||||||
Map<String, String> dataModelMap = new HashMap<>(16);
|
|
||||||
dataModelMap.put("${CreateId}", pqDevVO.getCreateId());
|
|
||||||
dataModelMap.put("${total}", pqDevVO.getDevChns().toString());
|
|
||||||
dataModelMap.put("${count}", i + "");
|
|
||||||
// 区分谐波和非谐波数据
|
|
||||||
// 谐波类
|
|
||||||
|
|
||||||
|
|
||||||
// 非谐波类
|
|
||||||
// 57V电压 电压&相角 index 不用计算了,固定为1
|
|
||||||
// Integer testItemIndex = getTestItemIndex(scriptId, "e797c4b940389404e64fb92e4507c5f4", "Base", "VOL", 57);
|
|
||||||
// 获取输出脚本ID
|
|
||||||
Integer testItemIndex = 1;
|
|
||||||
// String pqScriptCheckDataService = getPqScriptCheckDataByScriptId(scriptId,testItemIndex,1,Arrays.asList("A","B","C"));
|
|
||||||
String pqScriptCheckDataService = "8e221487f242c77f1eff05234580d4c5";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValue(singleNonHarmParam, dataModelMap, "57Ua", "57Ub", "57Uc");
|
|
||||||
|
|
||||||
// 57V相角
|
|
||||||
testItemIndex = 1;
|
|
||||||
pqScriptCheckDataService = "e8bbfaad7a3fa343d3c46d345fb45fa3";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValue(singleNonHarmParam, dataModelMap, "57UaA", "57UbA", "57UcA");
|
|
||||||
|
|
||||||
// 10V电压
|
|
||||||
testItemIndex = 2;
|
|
||||||
pqScriptCheckDataService = "8e221487f242c77f1eff05234580d4c5";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValue(singleNonHarmParam, dataModelMap, "10Ua", "10Ub", "10Uc");
|
|
||||||
|
|
||||||
|
|
||||||
// 电压偏差
|
|
||||||
testItemIndex = 3;
|
|
||||||
pqScriptCheckDataService = "8e221487f242c77f1eff05234580d4c5";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValue(singleNonHarmParam, dataModelMap, "DELTA_Ua", "DELTA_Ub", "DELTA_Uc");
|
|
||||||
// 特殊处理电压偏差
|
|
||||||
specialDealVoltage(dataModelMap, "${DELTA_Ua}");
|
|
||||||
specialDealVoltage(dataModelMap, "${DELTA_Ub}");
|
|
||||||
specialDealVoltage(dataModelMap, "${DELTA_Uc}");
|
|
||||||
|
|
||||||
// 5A 电流
|
|
||||||
testItemIndex = 4;
|
|
||||||
pqScriptCheckDataService = "7fbadbeb9dd5ccb69d216f4f9ad60b4f";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValue(singleNonHarmParam, dataModelMap, "5Ia", "5Ib", "5Ic");
|
|
||||||
|
|
||||||
// 5A 电流相角
|
|
||||||
testItemIndex = 4;
|
|
||||||
pqScriptCheckDataService = "fdffc6b5dfdc8751b9fde9b599b8ea51";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValue(singleNonHarmParam, dataModelMap, "5IaA", "5IbA", "5IcA");
|
|
||||||
|
|
||||||
// 1A 电流
|
|
||||||
testItemIndex = 5;
|
|
||||||
pqScriptCheckDataService = "7fbadbeb9dd5ccb69d216f4f9ad60b4f";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValue(singleNonHarmParam, dataModelMap, "1Ia", "1Ib", "1Ic");
|
|
||||||
|
|
||||||
|
|
||||||
// 三相电压不平衡度
|
|
||||||
testItemIndex = 6;
|
|
||||||
pqScriptCheckDataService = "9e9910f3627870c7fcf5846342f29d26";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValueT(singleNonHarmParam, dataModelMap, "V_UNBAN");
|
|
||||||
|
|
||||||
|
|
||||||
// 频率 45
|
|
||||||
testItemIndex = 7;
|
|
||||||
pqScriptCheckDataService = "2da2a32c0cd19fb6368b9f4c249c2b3c";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValueT(singleNonHarmParam, dataModelMap, "FREQ45");
|
|
||||||
|
|
||||||
|
|
||||||
// 频率 50
|
|
||||||
testItemIndex = 8;
|
|
||||||
pqScriptCheckDataService = "2da2a32c0cd19fb6368b9f4c249c2b3c";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValueT(singleNonHarmParam, dataModelMap, "FREQ50");
|
|
||||||
|
|
||||||
|
|
||||||
// 频率 55
|
|
||||||
testItemIndex = 9;
|
|
||||||
pqScriptCheckDataService = "2da2a32c0cd19fb6368b9f4c249c2b3c";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValueT(singleNonHarmParam, dataModelMap, "FREQ55");
|
|
||||||
|
|
||||||
// 谐波电压
|
|
||||||
testItemIndex = 10;
|
|
||||||
pqScriptCheckDataService = "cce92410f1902897a61f644d875f2216";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValueHarm(singleNonHarmParam, dataModelMap, "Uha", "Uhb", "Uhc", 57.74, 100);
|
|
||||||
|
|
||||||
// 谐波电电流
|
|
||||||
testItemIndex = 11;
|
|
||||||
pqScriptCheckDataService = "3e5e384d38485ca4242152fba336de1d";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValueHarm(singleNonHarmParam, dataModelMap, "Iha", "Ihb", "Ihc", 1, 1);
|
|
||||||
|
|
||||||
// 间谐波电压
|
|
||||||
testItemIndex = 12;
|
|
||||||
pqScriptCheckDataService = "d57ea0e085ecf6c4e9f4da09b948befe";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValueHarm(singleNonHarmParam, dataModelMap, "InUa", "InUb", "InUc", 57.74, 100);
|
|
||||||
|
|
||||||
// 间谐波电流
|
|
||||||
testItemIndex = 13;
|
|
||||||
pqScriptCheckDataService = "6bc58769dcbb2f83a13ff965a20a3cf3";
|
|
||||||
// 获取数据
|
|
||||||
singleNonHarmParam.setAdType(pqScriptCheckDataService);
|
|
||||||
singleNonHarmParam.setSort(testItemIndex);
|
|
||||||
fillMapValueHarm(singleNonHarmParam, dataModelMap, "InIa", "InIb", "InIc", 1, 1);
|
|
||||||
|
|
||||||
|
|
||||||
// 替换文档内容
|
|
||||||
WordUtil.replacePlaceholdersInParagraphs(dataModelDocumentTemp, dataModelMap);
|
|
||||||
WordUtil.replacePlaceholdersInTables(dataModelDocumentTemp, dataModelMap);
|
|
||||||
WordUtil.appendDocument(baseModelDocument, dataModelDocumentTemp);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void specialDealVoltage(Map<String, String> dataModelMap, String symbol) {
|
|
||||||
String value = dataModelMap.get(symbol);
|
|
||||||
if (Objects.nonNull(value) && !value.equals("/")) {
|
|
||||||
Double valueDouble = Double.valueOf(value);
|
|
||||||
double result = ((valueDouble - 57.74) / 57.74) * 100;
|
|
||||||
dataModelMap.put(symbol, doubleRound(4, result));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 填充谐波Map数据
|
|
||||||
*/
|
|
||||||
private void fillMapValueHarm(SingleNonHarmParam singleNonHarmParam, Map<String, String> dataModelMap, String aSymbol, String bSymbol, String cSymbol, double baseValue, int percent) {
|
|
||||||
AdHarmonicResult adHarmonicResult = adHarmonicService.getSingleResult(singleNonHarmParam);
|
|
||||||
if (Objects.nonNull(adHarmonicResult)) {
|
|
||||||
|
|
||||||
// 要处理 2 5 7 11 23 35 43 50
|
|
||||||
// 基波
|
|
||||||
String aBase = devValue(adHarmonicResult.getAValue1(), 1, 1);
|
|
||||||
String bBase = devValue(adHarmonicResult.getBValue1(), 1, 1);
|
|
||||||
String cBase = devValue(adHarmonicResult.getCValue1(), 1, 1);
|
|
||||||
dataModelMap.put("${" + aSymbol + "1}", aBase);
|
|
||||||
dataModelMap.put("${" + bSymbol + "1}", bBase);
|
|
||||||
dataModelMap.put("${" + cSymbol + "1}", cBase);
|
|
||||||
double aBaseValue = baseValue;
|
|
||||||
double bBaseValue = baseValue;
|
|
||||||
double cBaseValue = baseValue;
|
|
||||||
|
|
||||||
if (!aBase.equals(StrPool.SLASH)) {
|
|
||||||
aBaseValue = Double.parseDouble(aBase);
|
|
||||||
}
|
|
||||||
if (!bBase.equals(StrPool.SLASH)) {
|
|
||||||
bBaseValue = Double.parseDouble(bBase);
|
|
||||||
}
|
|
||||||
if (!cBase.equals(StrPool.SLASH)) {
|
|
||||||
cBaseValue = Double.parseDouble(cBase);
|
|
||||||
}
|
|
||||||
|
|
||||||
dataModelMap.put("${" + aSymbol + "2}", devValue(adHarmonicResult.getAValue2(), aBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + bSymbol + "2}", devValue(adHarmonicResult.getBValue2(), bBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + cSymbol + "2}", devValue(adHarmonicResult.getCValue2(), cBaseValue, percent));
|
|
||||||
|
|
||||||
|
|
||||||
dataModelMap.put("${" + aSymbol + "5}", devValue(adHarmonicResult.getAValue5(), aBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + bSymbol + "5}", devValue(adHarmonicResult.getBValue5(), bBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + cSymbol + "5}", devValue(adHarmonicResult.getCValue5(), cBaseValue, percent));
|
|
||||||
|
|
||||||
dataModelMap.put("${" + aSymbol + "7}", devValue(adHarmonicResult.getAValue7(), aBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + bSymbol + "7}", devValue(adHarmonicResult.getBValue7(), bBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + cSymbol + "7}", devValue(adHarmonicResult.getCValue7(), cBaseValue, percent));
|
|
||||||
|
|
||||||
dataModelMap.put("${" + aSymbol + "11}", devValue(adHarmonicResult.getAValue11(), aBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + bSymbol + "11}", devValue(adHarmonicResult.getBValue11(), bBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + cSymbol + "11}", devValue(adHarmonicResult.getCValue11(), cBaseValue, percent));
|
|
||||||
|
|
||||||
dataModelMap.put("${" + aSymbol + "23}", devValue(adHarmonicResult.getAValue23(), aBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + bSymbol + "23}", devValue(adHarmonicResult.getBValue23(), bBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + cSymbol + "23}", devValue(adHarmonicResult.getCValue23(), cBaseValue, percent));
|
|
||||||
|
|
||||||
dataModelMap.put("${" + aSymbol + "35}", devValue(adHarmonicResult.getAValue35(), aBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + bSymbol + "35}", devValue(adHarmonicResult.getBValue35(), bBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + cSymbol + "35}", devValue(adHarmonicResult.getCValue35(), cBaseValue, percent));
|
|
||||||
|
|
||||||
dataModelMap.put("${" + aSymbol + "43}", devValue(adHarmonicResult.getAValue43(), aBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + bSymbol + "43}", devValue(adHarmonicResult.getBValue43(), bBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + cSymbol + "43}", devValue(adHarmonicResult.getCValue43(), cBaseValue, percent));
|
|
||||||
|
|
||||||
dataModelMap.put("${" + aSymbol + "50}", devValue(adHarmonicResult.getAValue50(), aBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + bSymbol + "50}", devValue(adHarmonicResult.getBValue50(), bBaseValue, percent));
|
|
||||||
dataModelMap.put("${" + cSymbol + "50}", devValue(adHarmonicResult.getCValue50(), cBaseValue, percent));
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private String devValue(String dataJson, double baseValue, Integer percent) {
|
|
||||||
DetectionData tempA = JSONUtil.toBean(dataJson, DetectionData.class);
|
|
||||||
if (Objects.nonNull(tempA) && Objects.nonNull(tempA.getData())) {
|
|
||||||
return doubleRound(4, (tempA.getData() / percent) * baseValue);
|
|
||||||
}
|
|
||||||
return StrPool.SLASH;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 填充非谐波Map数据,ABC三相
|
|
||||||
*/
|
|
||||||
private void fillMapValue(SingleNonHarmParam singleNonHarmParam, Map<String, String> dataModelMap, String aSymbol, String bSymbol, String cSymbol) {
|
|
||||||
AdNonHarmonicResult adNonHarmonicResult = adNonHarmonicService.getSingleResult(singleNonHarmParam);
|
|
||||||
if (Objects.nonNull(adNonHarmonicResult)) {
|
|
||||||
dataModelMap.put("${".concat(aSymbol).concat("}"), devValue(adNonHarmonicResult.getAValue(), 1, 1));
|
|
||||||
dataModelMap.put("${".concat(bSymbol).concat("}"), devValue(adNonHarmonicResult.getBValue(), 1, 1));
|
|
||||||
dataModelMap.put("${".concat(cSymbol).concat("}"), devValue(adNonHarmonicResult.getCValue(), 1, 1));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 填充非谐波Map数据,T相
|
|
||||||
*/
|
|
||||||
private void fillMapValueT(SingleNonHarmParam singleNonHarmParam, Map<String, String> dataModelMap, String tSymbol) {
|
|
||||||
AdNonHarmonicResult adNonHarmonicResult = adNonHarmonicService.getSingleResult(singleNonHarmParam);
|
|
||||||
if (Objects.nonNull(adNonHarmonicResult)) {
|
|
||||||
dataModelMap.put("${".concat(tSymbol).concat("}"), devValue(adNonHarmonicResult.getTValue(), 1, 1));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private String getPqScriptCheckDataByScriptId(String scriptId, Integer index, Integer errFlag, List<String> phase) {
|
|
||||||
LambdaQueryWrapper<PqScriptCheckData> queryWrapper = new LambdaQueryWrapper<>();
|
|
||||||
// todo... 不参与比较的数据没有了
|
|
||||||
queryWrapper.eq(PqScriptCheckData::getScriptId, scriptId)
|
|
||||||
.eq(PqScriptCheckData::getEnable, DataStateEnum.ENABLE.getCode())
|
|
||||||
.in(PqScriptCheckData::getPhase, phase)
|
|
||||||
.eq(PqScriptCheckData::getScriptIndex, index);
|
|
||||||
List<PqScriptCheckData> list = pqScriptCheckDataService.list(queryWrapper);
|
|
||||||
if (CollectionUtil.isNotEmpty(list)) {
|
|
||||||
return list.get(0).getValueType();
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static void main(String[] args) throws IOException {
|
|
||||||
String path = "F:\\gitea\\fusionForce\\CN_Gather\\entrance\\src\\main\\resources\\model\\BaseDataModel.docx";
|
|
||||||
FileInputStream dataModelFis = new FileInputStream(new File(path));
|
|
||||||
XWPFDocument dataModelDocumentTemp = new XWPFDocument(dataModelFis);
|
|
||||||
Map<String, String> dataModelMap = new HashMap<>(16);
|
|
||||||
dataModelMap.put("${CreateId}", "123");
|
|
||||||
dataModelMap.put("${total}", "123");
|
|
||||||
dataModelMap.put("${count}", "1");
|
|
||||||
dataModelMap.put("${57Ua}", "123456");
|
|
||||||
dataModelMap.put("${Uha1}", "123456");
|
|
||||||
dataModelMap.put("${Uha2}", "123456");
|
|
||||||
WordUtil.replacePlaceholdersInParagraphs(dataModelDocumentTemp, dataModelMap);
|
|
||||||
WordUtil.replacePlaceholdersInTables(dataModelDocumentTemp, dataModelMap);
|
|
||||||
//最终文件输出的路径
|
|
||||||
FileOutputStream out = new FileOutputStream("C:\\Users\\hongawen\\Desktop\\testModel\\BaseDataModel" + DateUtil.format(new Date(), DatePattern.CHINESE_DATE_TIME_PATTERN) + ".docx");
|
|
||||||
// 4. 保存新的Word文档
|
|
||||||
try {
|
|
||||||
dataModelDocumentTemp.write(out);
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new BusinessException("生成报告文件失败");
|
|
||||||
}
|
|
||||||
out.close();
|
|
||||||
System.out.println("报告生成成功!");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取测试小项的index
|
|
||||||
* 注:测试项下发的ABCT的index均是一样的
|
|
||||||
*/
|
|
||||||
private Integer getTestItemIndex(String scriptId, String sourceScriptId, String subType, String valueType, Integer value) {
|
|
||||||
LambdaQueryWrapper<PqScriptDtls> queryWrapper = new LambdaQueryWrapper<>();
|
|
||||||
queryWrapper.eq(PqScriptDtls::getScriptId, scriptId)
|
|
||||||
.eq(PqScriptDtls::getScriptType, sourceScriptId)
|
|
||||||
.eq(PqScriptDtls::getScriptSubType, subType)
|
|
||||||
.eq(PqScriptDtls::getValueType, valueType)
|
|
||||||
.in(PqScriptDtls::getPhase, Arrays.asList("A", "B", "C"))
|
|
||||||
.eq(PqScriptDtls::getValue, value);
|
|
||||||
List<PqScriptDtls> pqScriptDtls = pqScriptDtlsService.list(queryWrapper);
|
|
||||||
if (CollectionUtil.isNotEmpty(pqScriptDtls)) {
|
|
||||||
return pqScriptDtls.get(0).getScriptIndex();
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据参数返回double的四舍五入值
|
|
||||||
*
|
|
||||||
* @param i 保留的位数
|
|
||||||
* @param value double原值
|
|
||||||
*/
|
|
||||||
public static String doubleRound(int i, double value) {
|
|
||||||
BigDecimal bp = new BigDecimal(value);
|
|
||||||
return String.format("%.4f", bp.setScale(i, RoundingMode.HALF_UP).doubleValue());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void ensureDirectoryExists(String directoryPath) {
|
|
||||||
File directory = new File(directoryPath);
|
|
||||||
if (!directory.exists()) {
|
|
||||||
boolean created = directory.mkdirs();
|
|
||||||
if (!created) {
|
|
||||||
throw new BusinessException("目录创建失败: " + directoryPath);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
System.out.println("目录已存在: " + directoryPath);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -6,7 +6,6 @@ import com.njcn.common.pojo.enums.common.LogEnum;
|
|||||||
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
||||||
import com.njcn.common.pojo.response.HttpResult;
|
import com.njcn.common.pojo.response.HttpResult;
|
||||||
import com.njcn.common.utils.LogUtil;
|
import com.njcn.common.utils.LogUtil;
|
||||||
import com.njcn.gather.device.pojo.param.PqDevParam;
|
|
||||||
import com.njcn.gather.result.pojo.param.ResultParam;
|
import com.njcn.gather.result.pojo.param.ResultParam;
|
||||||
import com.njcn.gather.result.pojo.vo.FormContentVO;
|
import com.njcn.gather.result.pojo.vo.FormContentVO;
|
||||||
import com.njcn.gather.result.pojo.vo.ResultVO;
|
import com.njcn.gather.result.pojo.vo.ResultVO;
|
||||||
@@ -20,10 +19,7 @@ import io.swagger.annotations.ApiOperation;
|
|||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.validation.annotation.Validated;
|
import org.springframework.validation.annotation.Validated;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.bind.annotation.RequestBody;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@@ -87,15 +83,40 @@ public class ResultController extends BaseController {
|
|||||||
resultService.exportRawData(queryParam);
|
resultService.exportRawData(queryParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPDATE)
|
||||||
|
@PostMapping("/reCalculate")
|
||||||
|
@ApiOperation("重新计算检测结果")
|
||||||
|
@ApiImplicitParam(name = "queryParam", value = "查询参数", required = true)
|
||||||
|
public HttpResult<Object> reCalculate(@RequestBody @Validated ResultParam.ChangeErrorSystemParam param) {
|
||||||
|
String methodDescribe = getMethodDescribe("reCalculate");
|
||||||
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, param);
|
||||||
|
|
||||||
|
resultService.reCalculate(param);
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPDATE)
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.UPDATE)
|
||||||
@PostMapping("/changeErrorSystem")
|
@PostMapping("/changeErrorSystem")
|
||||||
@ApiOperation("更换误差体系")
|
@ApiOperation("更换误差体系")
|
||||||
@ApiImplicitParam(name = "param", value = "修改参数", required = true)
|
@ApiImplicitParam(name = "param", value = "修改参数", required = true)
|
||||||
public HttpResult<Object> changeErrorSystem(@RequestBody ResultParam.ChangeErrorSystemParam param) {
|
public HttpResult<Object> changeErrorSystem(@RequestBody @Validated ResultParam.ChangeErrorSystemParam param) {
|
||||||
String methodDescribe = getMethodDescribe("changeErrorSystem");
|
String methodDescribe = getMethodDescribe("changeErrorSystem");
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, param);
|
||||||
|
|
||||||
resultService.changeErrorSystem(param);
|
resultService.changeErrorSystem(param);
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@OperateInfo(info = LogEnum.BUSINESS_COMMON, operateType = OperateType.DELETE)
|
||||||
|
@GetMapping("/deleteTempTable")
|
||||||
|
@ApiOperation("删除临时表")
|
||||||
|
@ApiImplicitParam(name = "param", value = "删除参数", required = true)
|
||||||
|
public HttpResult<Object> deleteTempTable(@RequestParam("code") String code) {
|
||||||
|
String methodDescribe = getMethodDescribe("deleteTempTable");
|
||||||
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, code);
|
||||||
|
|
||||||
|
resultService.deleteTempTable(code);
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
package com.njcn.gather.result.pojo.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-01-16
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
public enum ResultResponseEnum {
|
|
||||||
|
|
||||||
RAW_DATA_NOT_EXIST("原始数据不存在!", "A001014");
|
|
||||||
|
|
||||||
private final String message;
|
|
||||||
private final String code;
|
|
||||||
|
|
||||||
ResultResponseEnum(String code,String message) {
|
|
||||||
this.code = code;
|
|
||||||
this.message = message;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
package com.njcn.gather.result.pojo.param;
|
package com.njcn.gather.result.pojo.param;
|
||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@@ -38,7 +38,7 @@ public class ResultParam {
|
|||||||
/**
|
/**
|
||||||
* 自动生成,用于生成数据表后缀
|
* 自动生成,用于生成数据表后缀
|
||||||
*/
|
*/
|
||||||
private Integer code;
|
private String code;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 检测脚本序号
|
* 检测脚本序号
|
||||||
@@ -49,16 +49,16 @@ public class ResultParam {
|
|||||||
public static class QueryParam {
|
public static class QueryParam {
|
||||||
|
|
||||||
@ApiModelProperty(value = "检测计划Id", required = true)
|
@ApiModelProperty(value = "检测计划Id", required = true)
|
||||||
@NotBlank(message = DevValidMessage.PLAN_ID_NOT_NULL)
|
@NotBlank(message = DetectionValidMessage.PLAN_ID_NOT_NULL)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PLAN_ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PLAN_ID_FORMAT_ERROR)
|
||||||
private String planId;
|
private String planId;
|
||||||
|
|
||||||
// 脚本类型,当为null时,表示查询所有脚本类型,否则只查询指定脚本类型
|
// 脚本类型,当为null时,表示查询所有脚本类型,否则只查询指定脚本类型
|
||||||
private String scriptType;
|
private String scriptType;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备Id", required = true)
|
@ApiModelProperty(value = "设备Id", required = true)
|
||||||
@NotBlank(message = DevValidMessage.DEV_ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.DEV_ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.DEV_ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.DEV_ID_FORMAT_ERROR)
|
||||||
private String deviceId;
|
private String deviceId;
|
||||||
|
|
||||||
// 通道号,当为-1时,表示查询所有通道号,否则只查询指定通道号
|
// 通道号,当为-1时,表示查询所有通道号,否则只查询指定通道号
|
||||||
@@ -68,24 +68,24 @@ public class ResultParam {
|
|||||||
@Data
|
@Data
|
||||||
public static class ChangeErrorSystemParam {
|
public static class ChangeErrorSystemParam {
|
||||||
@ApiModelProperty(value = "检测计划Id", required = true)
|
@ApiModelProperty(value = "检测计划Id", required = true)
|
||||||
@NotBlank(message = DevValidMessage.PLAN_ID_NOT_NULL)
|
@NotBlank(message = DetectionValidMessage.PLAN_ID_NOT_NULL)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PLAN_ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PLAN_ID_FORMAT_ERROR)
|
||||||
private String planId;
|
private String planId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "脚本Id", required = true)
|
@ApiModelProperty(value = "脚本Id", required = true)
|
||||||
@NotBlank(message = DevValidMessage.SCRIPT_ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.SCRIPT_ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.SCRIPT_ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.SCRIPT_ID_FORMAT_ERROR)
|
||||||
private String scriptId;
|
private String scriptId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "误差体系Id", required = true)
|
@ApiModelProperty(value = "误差体系Id", required = true)
|
||||||
@NotBlank(message = DevValidMessage.ERROR_SYS_ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ERROR_SYS_ID_NOT_BLANK)
|
||||||
private String errorSysId;
|
private String errorSysId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备Id", required = true)
|
@ApiModelProperty(value = "设备Id", required = true)
|
||||||
@NotBlank(message = DevValidMessage.DEV_ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.DEV_ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.DEV_ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.DEV_ID_FORMAT_ERROR)
|
||||||
private String deviceId;
|
private String deviceId;
|
||||||
|
|
||||||
private Integer code;
|
private String code;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package com.njcn.gather.result.pojo.vo;
|
package com.njcn.gather.result.pojo.vo;
|
||||||
|
|
||||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||||
import com.njcn.gather.device.pojo.vo.PqDevExcel;
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
|||||||
@@ -39,9 +39,18 @@ public interface IResultService {
|
|||||||
*/
|
*/
|
||||||
ResultVO resultData(ResultParam param);
|
ResultVO resultData(ResultParam param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 展示结果数据(用于生成报告)
|
||||||
|
*
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
ResultVO resultDataForReport(ResultParam param);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 导出原始数据
|
* 导出原始数据
|
||||||
|
*
|
||||||
* @param param
|
* @param param
|
||||||
*/
|
*/
|
||||||
void exportRawData(ResultParam param);
|
void exportRawData(ResultParam param);
|
||||||
@@ -52,4 +61,18 @@ public interface IResultService {
|
|||||||
* @param param
|
* @param param
|
||||||
*/
|
*/
|
||||||
void changeErrorSystem(ResultParam.ChangeErrorSystemParam param);
|
void changeErrorSystem(ResultParam.ChangeErrorSystemParam param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除(更换误差体系时产生的)临时表
|
||||||
|
*
|
||||||
|
* @param code
|
||||||
|
*/
|
||||||
|
void deleteTempTable(String code);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重新计算
|
||||||
|
*
|
||||||
|
* @param param
|
||||||
|
*/
|
||||||
|
void reCalculate(ResultParam.ChangeErrorSystemParam param);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package com.njcn.gather.result.service.impl;
|
|||||||
import cn.afterturn.easypoi.excel.entity.ExportParams;
|
import cn.afterturn.easypoi.excel.entity.ExportParams;
|
||||||
import cn.hutool.core.bean.BeanUtil;
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
import cn.hutool.core.collection.CollUtil;
|
import cn.hutool.core.collection.CollUtil;
|
||||||
|
import cn.hutool.core.date.DatePattern;
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import com.github.yulichang.wrapper.MPJLambdaWrapper;
|
import com.github.yulichang.wrapper.MPJLambdaWrapper;
|
||||||
@@ -13,11 +14,10 @@ import com.njcn.gather.detection.pojo.enums.SourceOperateCodeEnum;
|
|||||||
import com.njcn.gather.detection.pojo.param.PreDetectionParam;
|
import com.njcn.gather.detection.pojo.param.PreDetectionParam;
|
||||||
import com.njcn.gather.detection.pojo.po.DevData;
|
import com.njcn.gather.detection.pojo.po.DevData;
|
||||||
import com.njcn.gather.detection.service.impl.DetectionServiceImpl;
|
import com.njcn.gather.detection.service.impl.DetectionServiceImpl;
|
||||||
import com.njcn.gather.detection.util.socket.MsgUtil;
|
|
||||||
import com.njcn.gather.device.service.IPqDevService;
|
import com.njcn.gather.device.service.IPqDevService;
|
||||||
import com.njcn.gather.plan.pojo.po.AdPlan;
|
import com.njcn.gather.plan.pojo.po.AdPlan;
|
||||||
import com.njcn.gather.plan.service.IAdPlanService;
|
import com.njcn.gather.plan.service.IAdPlanService;
|
||||||
import com.njcn.gather.result.pojo.enums.ResultResponseEnum;
|
import com.njcn.gather.pojo.enums.DetectionResponseEnum;
|
||||||
import com.njcn.gather.result.pojo.enums.ResultUnitEnum;
|
import com.njcn.gather.result.pojo.enums.ResultUnitEnum;
|
||||||
import com.njcn.gather.result.pojo.param.ResultParam;
|
import com.njcn.gather.result.pojo.param.ResultParam;
|
||||||
import com.njcn.gather.result.pojo.vo.FormContentVO;
|
import com.njcn.gather.result.pojo.vo.FormContentVO;
|
||||||
@@ -41,8 +41,8 @@ import com.njcn.gather.storage.pojo.po.AdNonHarmonicResult;
|
|||||||
import com.njcn.gather.storage.pojo.vo.RawDataVO;
|
import com.njcn.gather.storage.pojo.vo.RawDataVO;
|
||||||
import com.njcn.gather.storage.service.AdHarmonicService;
|
import com.njcn.gather.storage.service.AdHarmonicService;
|
||||||
import com.njcn.gather.storage.service.AdNonHarmonicService;
|
import com.njcn.gather.storage.service.AdNonHarmonicService;
|
||||||
import com.njcn.gather.system.config.pojo.po.SysTestConfig;
|
import com.njcn.gather.system.cfg.pojo.po.SysTestConfig;
|
||||||
import com.njcn.gather.system.config.service.ISysTestConfigService;
|
import com.njcn.gather.system.cfg.service.ISysTestConfigService;
|
||||||
import com.njcn.gather.system.dictionary.pojo.enums.DictDataEnum;
|
import com.njcn.gather.system.dictionary.pojo.enums.DictDataEnum;
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictTree;
|
import com.njcn.gather.system.dictionary.pojo.po.DictTree;
|
||||||
import com.njcn.gather.system.dictionary.service.IDictTreeService;
|
import com.njcn.gather.system.dictionary.service.IDictTreeService;
|
||||||
@@ -52,6 +52,8 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.time.format.DateTimeFormatter;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.function.Function;
|
import java.util.function.Function;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
@@ -106,13 +108,13 @@ public class ResultServiceImpl implements IResultService {
|
|||||||
DictTree dictTree = dictTreeService.getById(queryParam.getScriptType());
|
DictTree dictTree = dictTreeService.getById(queryParam.getScriptType());
|
||||||
|
|
||||||
if (HARMONIC_TYPE_CODE.contains(dictTree.getCode())) {
|
if (HARMONIC_TYPE_CODE.contains(dictTree.getCode())) {
|
||||||
allResultList.addAll(adHarmonicService.get(scriptId, indexList, queryParam.getDeviceId(), queryParam.getChnNum(), plan.getCode()));
|
allResultList.addAll(adHarmonicService.get(scriptId, indexList, queryParam.getDeviceId(), queryParam.getChnNum(), plan.getCode() + ""));
|
||||||
} else {
|
} else {
|
||||||
allResultList.addAll(adNonHarmonicService.get(scriptId, indexList, queryParam.getDeviceId(), queryParam.getChnNum(), plan.getCode()));
|
allResultList.addAll(adNonHarmonicService.get(scriptId, indexList, queryParam.getDeviceId(), queryParam.getChnNum(), plan.getCode() + ""));
|
||||||
}
|
}
|
||||||
} else { //查询所有的脚本类型
|
} else { //查询所有的脚本类型
|
||||||
allResultList.addAll(adHarmonicService.get(scriptId, null, queryParam.getDeviceId(), queryParam.getChnNum(), plan.getCode()));
|
allResultList.addAll(adHarmonicService.get(scriptId, null, queryParam.getDeviceId(), queryParam.getChnNum(), plan.getCode() + ""));
|
||||||
allResultList.addAll(adNonHarmonicService.get(scriptId, null, queryParam.getDeviceId(), queryParam.getChnNum(), plan.getCode()));
|
allResultList.addAll(adNonHarmonicService.get(scriptId, null, queryParam.getDeviceId(), queryParam.getChnNum(), plan.getCode() + ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -805,6 +807,37 @@ public class ResultServiceImpl implements IResultService {
|
|||||||
return resultVO;
|
return resultVO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ResultVO resultDataForReport(ResultParam param) {
|
||||||
|
StorageParam storage = new StorageParam();
|
||||||
|
storage.setIndex(param.getIndex());
|
||||||
|
storage.setScriptId(param.getScriptId());
|
||||||
|
storage.setDevId(param.getDevId());
|
||||||
|
storage.setDevNum(param.getDevNum());
|
||||||
|
storage.setCode(param.getCode());
|
||||||
|
DictTree dictTree = dictTreeService.getById(param.getScriptType());
|
||||||
|
List<Double> harmNum = new ArrayList<>();
|
||||||
|
if (HARMONIC_TYPE_CODE.contains(dictTree.getCode())) {
|
||||||
|
List<PqScriptCheckData> list = pqScriptCheckDataService.list(new MPJLambdaWrapper<PqScriptCheckData>()
|
||||||
|
.distinct()
|
||||||
|
.select(PqScriptCheckData::getHarmNum)
|
||||||
|
.eq(PqScriptCheckData::getScriptId, param.getScriptId())
|
||||||
|
.isNotNull(PqScriptCheckData::getHarmNum)
|
||||||
|
.eq(PqScriptCheckData::getScriptIndex, param.getIndex())
|
||||||
|
);
|
||||||
|
harmNum = list.stream().sorted(Comparator.comparing(PqScriptCheckData::getHarmNum))
|
||||||
|
.map(PqScriptCheckData::getHarmNum).distinct().collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
ResultVO resultVO = new ResultVO();
|
||||||
|
if (CollUtil.isEmpty(harmNum)) {
|
||||||
|
resultVO.setResultData(adNonHarmonicService.listNonHarmResultData(storage));
|
||||||
|
} else {
|
||||||
|
storage.setHarmNum(harmNum);
|
||||||
|
resultVO.setResultData(adHarmonicService.listHarmResultData(storage));
|
||||||
|
}
|
||||||
|
return resultVO;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void exportRawData(ResultParam param) {
|
public void exportRawData(ResultParam param) {
|
||||||
StorageParam storage = new StorageParam();
|
StorageParam storage = new StorageParam();
|
||||||
@@ -855,15 +888,26 @@ public class ResultServiceImpl implements IResultService {
|
|||||||
});
|
});
|
||||||
ExcelUtil.exportExcel("原始数据.xlsx", sheetsList);
|
ExcelUtil.exportExcel("原始数据.xlsx", sheetsList);
|
||||||
} else {
|
} else {
|
||||||
throw new BusinessException(ResultResponseEnum.RAW_DATA_NOT_EXIST);
|
throw new BusinessException(DetectionResponseEnum.RAW_DATA_NOT_EXIST);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional
|
||||||
public void changeErrorSystem(ResultParam.ChangeErrorSystemParam param) {
|
public void changeErrorSystem(ResultParam.ChangeErrorSystemParam param) {
|
||||||
this.createTempResultTable(param.getCode() + "");
|
this.createTempResultTable(param.getCode() + "_temp");
|
||||||
this.insertTempResultTable(param.getPlanId(), param.getScriptId(), param.getCode() + "", param.getErrorSysId(), param.getDeviceId());
|
this.calculateResult(param.getPlanId(), param.getScriptId(), param.getCode() + "_temp", param.getErrorSysId(), param.getDeviceId());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void deleteTempTable(String code) {
|
||||||
|
code = code + "_temp";
|
||||||
|
this.dropTempResultTable(code);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void reCalculate(ResultParam.ChangeErrorSystemParam param) {
|
||||||
|
this.calculateResult(param.getPlanId(), param.getScriptId(), param.getCode(), param.getErrorSysId(), param.getDeviceId());
|
||||||
}
|
}
|
||||||
|
|
||||||
private Integer conform(Set<Integer> numbers) {
|
private Integer conform(Set<Integer> numbers) {
|
||||||
@@ -887,15 +931,15 @@ public class ResultServiceImpl implements IResultService {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 拷贝结果表
|
* 拷贝结果表
|
||||||
*
|
*
|
||||||
* @param code
|
* @param code
|
||||||
*/
|
*/
|
||||||
private void createTempResultTable(String code) {
|
private void createTempResultTable(String code) {
|
||||||
tableGenMapper.genAdHarmonicTable("drop table if exists AD_Non_Harmonic_Result_" + code + "_temp,AD_Harmonic_Result_" + code + "_temp");
|
this.dropTempResultTable(code);
|
||||||
tableGenMapper.genAdNonHarmonicResultTable(code + "_temp");
|
String oldCode = code.replace("_temp", "");
|
||||||
|
tableGenMapper.genAdNonHarmonicResultTable(code);
|
||||||
StringBuilder A = new StringBuilder();
|
StringBuilder A = new StringBuilder();
|
||||||
StringBuilder B = new StringBuilder();
|
StringBuilder B = new StringBuilder();
|
||||||
StringBuilder C = new StringBuilder();
|
StringBuilder C = new StringBuilder();
|
||||||
@@ -910,7 +954,7 @@ public class ResultServiceImpl implements IResultService {
|
|||||||
C.append("C_Value_").append(i).append(" json NULL COMMENT '").append(i).append("次C相谐波',");
|
C.append("C_Value_").append(i).append(" json NULL COMMENT '").append(i).append("次C相谐波',");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
String sql1 = "CREATE TABLE if not exists AD_Harmonic_Result_" + code + "_temp (\n" +
|
String sql1 = "CREATE TABLE if not exists AD_Harmonic_Result_" + code + "(\n" +
|
||||||
" Monitor_Id CHAR(60) NOT NULL COMMENT '监测点Id',\n" +
|
" Monitor_Id CHAR(60) NOT NULL COMMENT '监测点Id',\n" +
|
||||||
" Time_Id DATETIME NULL COMMENT '时间',\n" +
|
" Time_Id DATETIME NULL COMMENT '时间',\n" +
|
||||||
" Script_Id CHAR(32) NOT NULL COMMENT '检测脚本子表Id,字典表',\n" +
|
" Script_Id CHAR(32) NOT NULL COMMENT '检测脚本子表Id,字典表',\n" +
|
||||||
@@ -922,22 +966,35 @@ public class ResultServiceImpl implements IResultService {
|
|||||||
" PRIMARY KEY (Monitor_Id, Script_Id, Sort, AD_Type)\n" +
|
" PRIMARY KEY (Monitor_Id, Script_Id, Sort, AD_Type)\n" +
|
||||||
") COMMENT='监测数据表';";
|
") COMMENT='监测数据表';";
|
||||||
tableGenMapper.genAdHarmonicTable(sql1);
|
tableGenMapper.genAdHarmonicTable(sql1);
|
||||||
|
|
||||||
|
sql1 = "CREATE TABLE ad_non_harmonic_" + code + " LIKE ad_non_harmonic_" + oldCode;
|
||||||
|
tableGenMapper.genAdHarmonicTable(sql1);
|
||||||
|
sql1 = "INSERT INTO ad_non_harmonic_" + code + " SELECT * FROM ad_non_harmonic_" + oldCode;
|
||||||
|
tableGenMapper.genAdHarmonicTable(sql1);
|
||||||
|
sql1 = "CREATE TABLE ad_harmonic_" + code + " LIKE ad_harmonic_" + oldCode;
|
||||||
|
tableGenMapper.genAdHarmonicTable(sql1);
|
||||||
|
sql1 = "INSERT INTO ad_harmonic_" + code + " SELECT * FROM ad_harmonic_" + oldCode;
|
||||||
|
tableGenMapper.genAdHarmonicTable(sql1);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dropTempResultTable(String code) {
|
||||||
|
tableGenMapper.genAdHarmonicTable("drop table if exists AD_Non_Harmonic_Result_" + code + ",AD_Harmonic_Result_" + code + "," + "ad_non_harmonic_" + code + "," + "ad_harmonic_" + code);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改拷贝后的结果表(根据误差体系修改)
|
* 根据原始数据、误差体系id、计算检测结果
|
||||||
*
|
*
|
||||||
* @param planId
|
* @param planId
|
||||||
* @param code
|
* @param code
|
||||||
* @param errorSysId
|
* @param errorSysId
|
||||||
* @param devId
|
* @param devId
|
||||||
*/
|
*/
|
||||||
private void insertTempResultTable(String planId, String scriptId, String code, String errorSysId, String devId) {
|
private void calculateResult(String planId, String scriptId, String code, String errorSysId, String devId) {
|
||||||
|
String oldCode = code.replace("_temp", "");
|
||||||
PreDetectionParam param = new PreDetectionParam();
|
PreDetectionParam param = new PreDetectionParam();
|
||||||
param.setCode(code);
|
param.setCode(code);
|
||||||
param.setErrorSysId(errorSysId);
|
param.setErrorSysId(errorSysId);
|
||||||
param.setDevIds(Arrays.asList(devId));
|
param.setDevIds(Arrays.asList(devId));
|
||||||
param.setCode(code + "_temp");
|
|
||||||
|
|
||||||
Map<String, String> devIdMapComm = new HashMap<>();
|
Map<String, String> devIdMapComm = new HashMap<>();
|
||||||
// PqDev dev = pqDevService.getById(devId);
|
// PqDev dev = pqDevService.getById(devId);
|
||||||
@@ -951,10 +1008,10 @@ public class ResultServiceImpl implements IResultService {
|
|||||||
dataRule = DictDataEnum.AT_WILL_VALUE;
|
dataRule = DictDataEnum.AT_WILL_VALUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
List<AdNonHarmonicResult> allNonHarmonicRawData = adNonHarmonicService.listAll(code, devId);
|
List<AdNonHarmonicResult> allNonHarmonicRawData = adNonHarmonicService.listAll(scriptId, oldCode, devId);
|
||||||
LinkedHashMap<Integer, List<AdNonHarmonicResult>> nonHarmonicMap = allNonHarmonicRawData.stream().sorted(Comparator.comparing(AdNonHarmonicResult::getSort))
|
LinkedHashMap<Integer, List<AdNonHarmonicResult>> nonHarmonicMap = allNonHarmonicRawData.stream().sorted(Comparator.comparing(AdNonHarmonicResult::getSort))
|
||||||
.collect(Collectors.groupingBy(AdNonHarmonicResult::getSort, LinkedHashMap::new, Collectors.toList()));
|
.collect(Collectors.groupingBy(AdNonHarmonicResult::getSort, LinkedHashMap::new, Collectors.toList()));
|
||||||
List<AdHarmonicResult> allHarmonicRawData = adHarmonicService.lisAll(code, devId);
|
List<AdHarmonicResult> allHarmonicRawData = adHarmonicService.listAll(scriptId, oldCode, devId);
|
||||||
LinkedHashMap<Integer, List<AdHarmonicResult>> harmonicMap = allHarmonicRawData.stream().sorted(Comparator.comparing(AdHarmonicResult::getSort))
|
LinkedHashMap<Integer, List<AdHarmonicResult>> harmonicMap = allHarmonicRawData.stream().sorted(Comparator.comparing(AdHarmonicResult::getSort))
|
||||||
.collect(Collectors.groupingBy(AdHarmonicResult::getSort, LinkedHashMap::new, Collectors.toList()));
|
.collect(Collectors.groupingBy(AdHarmonicResult::getSort, LinkedHashMap::new, Collectors.toList()));
|
||||||
|
|
||||||
@@ -974,74 +1031,125 @@ public class ResultServiceImpl implements IResultService {
|
|||||||
List<AdHarmonicResult> harmonicResults = harmonicMap.get(sourceIssue.getIndex());
|
List<AdHarmonicResult> harmonicResults = harmonicMap.get(sourceIssue.getIndex());
|
||||||
List<DevData> realDataXiList = new ArrayList<>();
|
List<DevData> realDataXiList = new ArrayList<>();
|
||||||
if (CollUtil.isNotEmpty(nonHarmonicResults)) {
|
if (CollUtil.isNotEmpty(nonHarmonicResults)) {
|
||||||
realDataXiList.addAll(MsgUtil.toList(nonHarmonicResults, null, true));
|
realDataXiList.addAll(this.toList(nonHarmonicResults, null, true));
|
||||||
}
|
}
|
||||||
if (CollUtil.isNotEmpty(harmonicResults)) {
|
if (CollUtil.isNotEmpty(harmonicResults)) {
|
||||||
DictTree dictTree = dictTreeService.getById(harmonicResults.get(0).getAdType());
|
DictTree dictTree = dictTreeService.getById(harmonicResults.get(0).getAdType());
|
||||||
if (ObjectUtil.isNotNull(dictTree)) {
|
if (ObjectUtil.isNotNull(dictTree)) {
|
||||||
if (DetectionCodeEnum.V2_50.getCode().equals(dictTree.getCode()) || DetectionCodeEnum.I2_50.getCode().equals(dictTree.getCode()) || DetectionCodeEnum.P2_50.getCode().equals(dictTree.getCode())) {
|
if (DetectionCodeEnum.V2_50.getCode().equals(dictTree.getCode()) || DetectionCodeEnum.I2_50.getCode().equals(dictTree.getCode()) || DetectionCodeEnum.P2_50.getCode().equals(dictTree.getCode())) {
|
||||||
realDataXiList.addAll(MsgUtil.toList(null, harmonicResults, true));
|
realDataXiList.addAll(this.toList(null, harmonicResults, true));
|
||||||
} else {
|
} else {
|
||||||
realDataXiList.addAll(MsgUtil.toList(null, harmonicResults, false));
|
realDataXiList.addAll(this.toList(null, harmonicResults, false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < realDataXiList.size(); i++) {
|
|
||||||
DevData devData = realDataXiList.get(i);
|
|
||||||
List<DevData.SqlDataHarmDTO> sqlDataHarm = devData.getSqlDataHarm();
|
|
||||||
if (CollUtil.isNotEmpty(sqlDataHarm)) {
|
|
||||||
for (int j = 0; j < sqlDataHarm.size(); j++) {
|
|
||||||
DevData.SqlDataHarmDTO sqlDataDTO = sqlDataHarm.get(j);
|
|
||||||
String desc = sqlDataDTO.getDesc();
|
|
||||||
if (StrUtil.isNotBlank(desc)) {
|
|
||||||
DictTree dictTree = dictTreeService.getById(desc);
|
|
||||||
if (ObjectUtil.isNotNull(dictTree)) {
|
|
||||||
sqlDataDTO.setDesc(dictTree.getCode());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
List<DevData.SqlDataDTO> sqlData = devData.getSqlData();
|
|
||||||
if (CollUtil.isNotEmpty(sqlData)) {
|
|
||||||
for (int j = 0; j < sqlData.size(); j++) {
|
|
||||||
DevData.SqlDataDTO sqlDataDTO = sqlData.get(j);
|
|
||||||
String desc = sqlDataDTO.getDesc();
|
|
||||||
if (StrUtil.isNotBlank(desc)) {
|
|
||||||
DictTree dictTree = dictTreeService.getById(desc);
|
|
||||||
if (ObjectUtil.isNotNull(dictTree)) {
|
|
||||||
if (CollUtil.isNotEmpty(harmonicResults)) {
|
|
||||||
// if (dictTree.getCode().contains("V")) {
|
|
||||||
// sqlDataDTO.setDesc(DetectionCodeEnum.U1.getCode());
|
|
||||||
// }
|
|
||||||
// if (dictTree.getCode().contains("I")) {
|
|
||||||
// sqlDataDTO.setDesc(DetectionCodeEnum.I1.getCode());
|
|
||||||
// }
|
|
||||||
if (DetectionCodeEnum.V2_50.getCode().equals(dictTree.getCode())) {
|
|
||||||
sqlDataDTO.setDesc(DetectionCodeEnum.U1.getCode());
|
|
||||||
}
|
|
||||||
if (DetectionCodeEnum.I2_50.getCode().equals(dictTree.getCode())) {
|
|
||||||
sqlDataDTO.setDesc(DetectionCodeEnum.I1.getCode());
|
|
||||||
}
|
|
||||||
// if (DetectionCodeEnum.SV_1_49.getCode().equals(dictTree.getCode())) {
|
|
||||||
// devData.setSqlData(null);
|
|
||||||
// }
|
|
||||||
// if (DetectionCodeEnum.SI_1_49.getCode().equals(dictTree.getCode())) {
|
|
||||||
// devData.setSqlData(null);
|
|
||||||
// }
|
|
||||||
// if (DetectionCodeEnum.P2_50.getCode().equals(dictTree.getCode())) {
|
|
||||||
// devData.setSqlData(null);
|
|
||||||
// }
|
|
||||||
} else {
|
|
||||||
sqlDataDTO.setDesc(dictTree.getCode());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
detectionServiceImpl.processing(realDataXiList, param, devIdMapComm, sourceIssue, dataRule);
|
detectionServiceImpl.processing(realDataXiList, param, devIdMapComm, sourceIssue, dataRule);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private List<DevData> toList(List<AdNonHarmonicResult> nonHarm, List<AdHarmonicResult> harm, boolean containBaseHarm) {
|
||||||
|
List<DevData> info = new ArrayList<>();
|
||||||
|
// if (CollUtil.isNotEmpty(nonHarm)) {
|
||||||
|
if (CollUtil.isNotEmpty(nonHarm)) {
|
||||||
|
Map<String, List<AdNonHarmonicResult>> noHarmMap = nonHarm.stream()
|
||||||
|
.collect(Collectors.groupingBy(x -> x.getMonitorId() + "_" + x.getTimeId().format(DateTimeFormatter.ofPattern(DatePattern.UTC_SIMPLE_MS_PATTERN)) + "_" + x.getSort()));
|
||||||
|
noHarmMap.forEach((key, value) -> {
|
||||||
|
String[] split = key.split("_");
|
||||||
|
DevData data = new DevData();
|
||||||
|
data.setTime(split[2]);
|
||||||
|
data.setId(split[0] + "_" + split[1]);
|
||||||
|
List<DevData.SqlDataDTO> sqlDataDTOS = new ArrayList<>();
|
||||||
|
DevData.SqlDataDTO sqlDataDTO;
|
||||||
|
for (AdNonHarmonicResult result : value) {
|
||||||
|
sqlDataDTO = new DevData.SqlDataDTO();
|
||||||
|
sqlDataDTO.setType(result.getDataType());
|
||||||
|
DictTree dictTree = dictTreeService.getById(result.getAdType());
|
||||||
|
sqlDataDTO.setDesc(dictTree.getCode());
|
||||||
|
DevData.SqlDataDTO.ListDTO listDTO = new DevData.SqlDataDTO.ListDTO();
|
||||||
|
listDTO.setA(StrUtil.isNotBlank(result.getAValue()) ? Double.valueOf(result.getAValue()) : null);
|
||||||
|
listDTO.setB(StrUtil.isNotBlank(result.getBValue()) ? Double.valueOf(result.getBValue()) : null);
|
||||||
|
listDTO.setC(StrUtil.isNotBlank(result.getCValue()) ? Double.valueOf(result.getCValue()) : null);
|
||||||
|
listDTO.setT(StrUtil.isNotBlank(result.getTValue()) ? Double.valueOf(result.getTValue()) : null);
|
||||||
|
sqlDataDTO.setList(listDTO);
|
||||||
|
sqlDataDTOS.add(sqlDataDTO);
|
||||||
|
}
|
||||||
|
data.setSqlData(sqlDataDTOS);
|
||||||
|
info.add(data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (CollUtil.isNotEmpty(harm)) {
|
||||||
|
Map<String, List<AdHarmonicResult>> harmMap = harm.stream()
|
||||||
|
.collect(Collectors.groupingBy(x -> x.getMonitorId() + "_" + x.getTimeId().format(DateTimeFormatter.ofPattern(DatePattern.UTC_SIMPLE_MS_PATTERN))));
|
||||||
|
harmMap.forEach((key, value) -> {
|
||||||
|
List<DevData> collect = info.stream().filter(x -> key.equals(x.getId() + "_" + x.getTime())).collect(Collectors.toList());
|
||||||
|
List<DevData.SqlDataDTO> sqlDataDTOS = new ArrayList<>();
|
||||||
|
DevData.SqlDataDTO sqlDataDTO;
|
||||||
|
List<DevData.SqlDataHarmDTO> sqlDataHarmDTOS = new ArrayList<>();
|
||||||
|
DevData.SqlDataHarmDTO dataHarmDTO;
|
||||||
|
for (AdHarmonicResult harmonicResult : value) {
|
||||||
|
DictTree dictTree = dictTreeService.getById(harmonicResult.getAdType());
|
||||||
|
if (containBaseHarm) {
|
||||||
|
sqlDataDTO = new DevData.SqlDataDTO();
|
||||||
|
sqlDataDTO.setType(harmonicResult.getDataType());
|
||||||
|
if (DetectionCodeEnum.V2_50.getCode().equals(dictTree.getCode())) {
|
||||||
|
sqlDataDTO.setDesc(DetectionCodeEnum.U1.getCode());
|
||||||
|
} else if (DetectionCodeEnum.I2_50.getCode().equals(dictTree.getCode())) {
|
||||||
|
sqlDataDTO.setDesc(DetectionCodeEnum.I1.getCode());
|
||||||
|
} else {
|
||||||
|
sqlDataDTO.setDesc(dictTree.getCode());
|
||||||
|
}
|
||||||
|
DevData.SqlDataDTO.ListDTO listDTO = new DevData.SqlDataDTO.ListDTO();
|
||||||
|
listDTO.setA(StrUtil.isNotBlank(harmonicResult.getAValue1()) ? Double.valueOf(harmonicResult.getAValue1()) : null);
|
||||||
|
listDTO.setB(StrUtil.isNotBlank(harmonicResult.getBValue1()) ? Double.valueOf(harmonicResult.getBValue1()) : null);
|
||||||
|
listDTO.setC(StrUtil.isNotBlank(harmonicResult.getCValue1()) ? Double.valueOf(harmonicResult.getCValue1()) : null);
|
||||||
|
sqlDataDTO.setList(listDTO);
|
||||||
|
sqlDataDTOS.add(sqlDataDTO);
|
||||||
|
}
|
||||||
|
|
||||||
|
dataHarmDTO = new DevData.SqlDataHarmDTO();
|
||||||
|
dataHarmDTO.setType(harmonicResult.getDataType());
|
||||||
|
dataHarmDTO.setDesc(dictTree.getCode());
|
||||||
|
dataHarmDTO.setNum(containBaseHarm ? 49 : 50);
|
||||||
|
DevData.SqlDataHarmDTO.ListDTO listHarmDTO = new DevData.SqlDataHarmDTO.ListDTO();
|
||||||
|
listHarmDTO.setA(reflectHarmonicValue("a", harmonicResult, containBaseHarm));
|
||||||
|
listHarmDTO.setB(reflectHarmonicValue("b", harmonicResult, containBaseHarm));
|
||||||
|
listHarmDTO.setC(reflectHarmonicValue("c", harmonicResult, containBaseHarm));
|
||||||
|
dataHarmDTO.setList(listHarmDTO);
|
||||||
|
sqlDataHarmDTOS.add(dataHarmDTO);
|
||||||
|
}
|
||||||
|
if (CollUtil.isNotEmpty(collect)) {
|
||||||
|
collect.get(0).setSqlDataHarm(sqlDataHarmDTOS);
|
||||||
|
} else {
|
||||||
|
String[] split = key.split("_");
|
||||||
|
DevData data = new DevData();
|
||||||
|
data.setTime(split[2]);
|
||||||
|
data.setId(split[0] + "_" + split[1]);
|
||||||
|
data.setSqlData(sqlDataDTOS);
|
||||||
|
data.setSqlDataHarm(sqlDataHarmDTOS);
|
||||||
|
info.add(data);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
// }
|
||||||
|
return info;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<String> reflectHarmonicValue(String phase, AdHarmonicResult adHarmonicResult, boolean notContainBaseHarm) {
|
||||||
|
List<String> info = new ArrayList<>();
|
||||||
|
for (int i = notContainBaseHarm ? 2 : 1; i <= 50; i++) {
|
||||||
|
String fieldName = phase + "Value" + i;
|
||||||
|
try {
|
||||||
|
Field idField = AdHarmonicResult.class.getDeclaredField(fieldName);
|
||||||
|
idField.setAccessible(true);
|
||||||
|
String value = idField.get(adHarmonicResult) + "";
|
||||||
|
info.add(value);
|
||||||
|
} catch (NoSuchFieldException | IllegalAccessException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return info;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
import org.springframework.validation.annotation.Validated;
|
import org.springframework.validation.annotation.Validated;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@@ -60,14 +59,14 @@ public class PqScriptController extends BaseController {
|
|||||||
@PostMapping("/add")
|
@PostMapping("/add")
|
||||||
@ApiOperation("新增检测脚本")
|
@ApiOperation("新增检测脚本")
|
||||||
@ApiImplicitParam(name = "pqDevParam", value = "检测脚本", required = true)
|
@ApiImplicitParam(name = "pqDevParam", value = "检测脚本", required = true)
|
||||||
public HttpResult<String> add(@RequestBody @Validated PqScriptParam param) {
|
public HttpResult<Boolean> add(@RequestBody @Validated PqScriptParam param) {
|
||||||
String methodDescribe = getMethodDescribe("add");
|
String methodDescribe = getMethodDescribe("add");
|
||||||
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
||||||
String result = pqScriptService.addPqScript(param);
|
Boolean result = pqScriptService.addPqScript(param);
|
||||||
if (StrUtil.isNotBlank(result)) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -75,14 +74,14 @@ public class PqScriptController extends BaseController {
|
|||||||
@PostMapping("/update")
|
@PostMapping("/update")
|
||||||
@ApiOperation("修改检测脚本")
|
@ApiOperation("修改检测脚本")
|
||||||
@ApiImplicitParam(name = "updateParam", value = "检测脚本", required = true)
|
@ApiImplicitParam(name = "updateParam", value = "检测脚本", required = true)
|
||||||
public HttpResult<Object> update(@RequestBody @Validated PqScriptParam.UpdateParam param) {
|
public HttpResult<Boolean> update(@RequestBody @Validated PqScriptParam.UpdateParam param) {
|
||||||
String methodDescribe = getMethodDescribe("update");
|
String methodDescribe = getMethodDescribe("update");
|
||||||
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, param);
|
||||||
boolean result = pqScriptService.updatePqScript(param);
|
boolean result = pqScriptService.updatePqScript(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -90,14 +89,14 @@ public class PqScriptController extends BaseController {
|
|||||||
@PostMapping("/delete")
|
@PostMapping("/delete")
|
||||||
@ApiOperation("删除检测脚本")
|
@ApiOperation("删除检测脚本")
|
||||||
@ApiImplicitParam(name = "ids", value = "检测脚本id", required = true)
|
@ApiImplicitParam(name = "ids", value = "检测脚本id", required = true)
|
||||||
public HttpResult<Object> delete(@RequestBody List<String> ids) {
|
public HttpResult<Boolean> delete(@RequestBody List<String> ids) {
|
||||||
String methodDescribe = getMethodDescribe("delete");
|
String methodDescribe = getMethodDescribe("delete");
|
||||||
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
||||||
boolean result = pqScriptService.deletePqScript(ids);
|
boolean result = pqScriptService.deletePqScript(ids);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,14 +115,14 @@ public class PqScriptController extends BaseController {
|
|||||||
@GetMapping("/upgradeToTemplate")
|
@GetMapping("/upgradeToTemplate")
|
||||||
@ApiOperation("升级为模板")
|
@ApiOperation("升级为模板")
|
||||||
@ApiImplicitParam(name = "id", value = "检测脚本id", required = true)
|
@ApiImplicitParam(name = "id", value = "检测脚本id", required = true)
|
||||||
public HttpResult<Object> upgradeToTemplate(@RequestParam("id") String id, HttpServletRequest request) {
|
public HttpResult<Boolean> upgradeToTemplate(@RequestParam("id") String id) {
|
||||||
String methodDescribe = getMethodDescribe("upgradeToTemplate");
|
String methodDescribe = getMethodDescribe("upgradeToTemplate");
|
||||||
LogUtil.njcnDebug(log, "{},升级ID数据为:{}", methodDescribe, id);
|
LogUtil.njcnDebug(log, "{},升级ID数据为:{}", methodDescribe, id);
|
||||||
boolean result = pqScriptService.upgradeToTemplate(id);
|
boolean result = pqScriptService.upgradeToTemplate(id);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -159,7 +158,7 @@ public class PqScriptController extends BaseController {
|
|||||||
String methodDescribe = getMethodDescribe("addScriptDtls");
|
String methodDescribe = getMethodDescribe("addScriptDtls");
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, sourceIssue);
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, sourceIssue);
|
||||||
Boolean b = pqScriptDtlsService.saveScriptDtls(sourceIssue);
|
Boolean b = pqScriptDtlsService.saveScriptDtls(sourceIssue);
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, b , methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, b, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
@OperateInfo
|
@OperateInfo
|
||||||
@@ -170,7 +169,7 @@ public class PqScriptController extends BaseController {
|
|||||||
String methodDescribe = getMethodDescribe("scriptDtlsCheckDataList");
|
String methodDescribe = getMethodDescribe("scriptDtlsCheckDataList");
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, sourceIssue);
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, sourceIssue);
|
||||||
List<PqScriptDtlsParam.CheckData> checkData = pqScriptDtlsService.scriptDtlsCheckDataList(sourceIssue);
|
List<PqScriptDtlsParam.CheckData> checkData = pqScriptDtlsService.scriptDtlsCheckDataList(sourceIssue);
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, checkData , methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, checkData, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -182,7 +181,7 @@ public class PqScriptController extends BaseController {
|
|||||||
String methodDescribe = getMethodDescribe("deleteDtls");
|
String methodDescribe = getMethodDescribe("deleteDtls");
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, sourceIssue);
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, sourceIssue);
|
||||||
Boolean b = pqScriptDtlsService.deleteDtls(sourceIssue);
|
Boolean b = pqScriptDtlsService.deleteDtls(sourceIssue);
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, b , methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, b, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -194,7 +193,7 @@ public class PqScriptController extends BaseController {
|
|||||||
String methodDescribe = getMethodDescribe("updateDtls");
|
String methodDescribe = getMethodDescribe("updateDtls");
|
||||||
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, sourceIssue);
|
LogUtil.njcnDebug(log, "{},查询数据为:{}", methodDescribe, sourceIssue);
|
||||||
Boolean b = pqScriptDtlsService.updateDtls(sourceIssue);
|
Boolean b = pqScriptDtlsService.updateDtls(sourceIssue);
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, b , methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, b, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
@OperateInfo
|
@OperateInfo
|
||||||
@@ -208,5 +207,15 @@ public class PqScriptController extends BaseController {
|
|||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, checkData, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, checkData, methodDescribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@OperateInfo
|
||||||
|
@PostMapping("/getScriptDtlsDesc")
|
||||||
|
@ApiOperation("通讯脚本回显")
|
||||||
|
@ApiImplicitParam(name = "param", value = "检测脚本", required = true)
|
||||||
|
public HttpResult<String> getScriptDtlsDesc(@RequestBody @Validated ScriptParam.Desc param) {
|
||||||
|
String methodDescribe = getMethodDescribe("getScriptDtlsDesc");
|
||||||
|
String checkData = pqScriptDtlsService.getScriptDtlsDesc(param);
|
||||||
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, checkData, methodDescribe);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ public interface PqScriptDtlsMapper extends MPJBaseMapper<PqScriptDtls> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取当前检测脚本最大index值
|
* 获取当前检测脚本最大index值
|
||||||
|
*
|
||||||
* @param scriptId
|
* @param scriptId
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ public interface PqScriptMapper extends MPJBaseMapper<PqScript> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取检测脚本信息(先获取检测脚本类型是否相对值 true相对值 false绝对值(相对值要乘额定值,绝对值不需要处理))
|
* 获取检测脚本信息(先获取检测脚本类型是否相对值 true相对值 false绝对值(相对值要乘额定值,绝对值不需要处理))
|
||||||
|
*
|
||||||
* @param scriptId
|
* @param scriptId
|
||||||
* @return: com.njcn.gather.device.script.pojo.po.PqScript
|
* @return: com.njcn.gather.device.script.pojo.po.PqScript
|
||||||
* @Author: wr
|
* @Author: wr
|
||||||
|
|||||||
@@ -5,12 +5,9 @@
|
|||||||
|
|
||||||
<select id="selectMaxIndex" resultType="java.lang.Integer">
|
<select id="selectMaxIndex" resultType="java.lang.Integer">
|
||||||
|
|
||||||
SELECT
|
SELECT IFNULL(max(t.Script_Index), -1) AS num
|
||||||
IFNULL( max( t.Script_Index ), -1 ) AS num
|
FROM pq_script_dtls t
|
||||||
FROM
|
WHERE Script_Id = #{scriptId}
|
||||||
pq_script_dtls t
|
|
||||||
WHERE
|
|
||||||
Script_Id = #{scriptId}
|
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
package com.njcn.gather.script.pojo.constant;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-03-10
|
|
||||||
*/
|
|
||||||
public interface PqScriptValidMessage {
|
|
||||||
String INDEX_NOT_NULL = "index不能为空";
|
|
||||||
|
|
||||||
String VALUE_TYPE_NOT_BLANK = "脚本值类型不能为空";
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
package com.njcn.gather.script.pojo.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-03-10
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
public enum ScriptResponseEnum {
|
|
||||||
SCRIPT_BOUND_NOT_DELETE("A020001", "脚本已被计划所绑定,无法删除!");
|
|
||||||
|
|
||||||
private String code;
|
|
||||||
private String message;
|
|
||||||
|
|
||||||
ScriptResponseEnum(String code, String message) {
|
|
||||||
this.code = code;
|
|
||||||
this.message = message;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -37,6 +37,6 @@ public class PqScriptIssueParam {
|
|||||||
@ApiModelProperty("表明指标类型(例如:Freq频率下的影响、Base额定下的影响、VOL电压下的影响)")
|
@ApiModelProperty("表明指标类型(例如:Freq频率下的影响、Base额定下的影响、VOL电压下的影响)")
|
||||||
private String scriptSubType;
|
private String scriptSubType;
|
||||||
|
|
||||||
@ApiModelProperty("脚本下发类型")
|
@ApiModelProperty("脚本下发类型") //在程控源功能中使用。因为在程控源功能中,不知道装置的类型,即不知道额定电压、额定电流;而在正式检测时,知道装置的类型。为了区分,0表示正式检测,1表示程控源功能。
|
||||||
private int type;
|
private int type;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package com.njcn.gather.script.pojo.param;
|
package com.njcn.gather.script.pojo.param;
|
||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import com.njcn.gather.system.pojo.constant.SystemValidMessage;
|
import com.njcn.gather.system.pojo.constant.SystemValidMessage;
|
||||||
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
import com.njcn.web.pojo.annotation.DateTimeStrValid;
|
||||||
import com.njcn.web.pojo.param.BaseParam;
|
import com.njcn.web.pojo.param.BaseParam;
|
||||||
@@ -19,21 +19,22 @@ import javax.validation.constraints.*;
|
|||||||
public class PqScriptParam {
|
public class PqScriptParam {
|
||||||
|
|
||||||
@ApiModelProperty("名称")
|
@ApiModelProperty("名称")
|
||||||
@NotBlank(message = DevValidMessage.NAME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.NAME_NOT_BLANK)
|
||||||
|
@Pattern(regexp = PatternRegex.SCRIPT_NAME_REGEX, message = DetectionValidMessage.SCRIPT_NAME_FORMAT_ERROR)
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@ApiModelProperty("类型")
|
@ApiModelProperty("类型")
|
||||||
@NotNull(message = DevValidMessage.SCRIPT_TYPE_NOT_BLANK)
|
@NotNull(message = DetectionValidMessage.SCRIPT_TYPE_NOT_BLANK)
|
||||||
@Min(value = 0, message = DevValidMessage.SCRIPT_TYPE_FORMAT_ERROR)
|
@Min(value = 0, message = DetectionValidMessage.SCRIPT_TYPE_FORMAT_ERROR)
|
||||||
@Max(value = 1, message = DevValidMessage.SCRIPT_TYPE_FORMAT_ERROR)
|
@Max(value = 1, message = DetectionValidMessage.SCRIPT_TYPE_FORMAT_ERROR)
|
||||||
private Integer type;
|
private Integer type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 检测脚本模式,字典表(数字、模拟、比对)
|
* 检测脚本模式,字典表(数字、模拟、比对)
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty("模式")
|
@ApiModelProperty("模式")
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PATTERN_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PATTERN_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
private String pattern;
|
private String pattern;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -43,16 +44,35 @@ public class PqScriptParam {
|
|||||||
private String valueType;
|
private String valueType;
|
||||||
|
|
||||||
@ApiModelProperty("参照标准名称")
|
@ApiModelProperty("参照标准名称")
|
||||||
@NotBlank(message = DevValidMessage.STANDARD_NAME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.STANDARD_NAME_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.ERR_SYS_NAME, message = DevValidMessage.STANDARD_NAME_FORMAT_ERROR)
|
|
||||||
private String standardName;
|
private String standardName;
|
||||||
|
|
||||||
|
|
||||||
@ApiModelProperty("标准推行时间")
|
@ApiModelProperty("标准推行时间")
|
||||||
@NotBlank(message = DevValidMessage.STANDARD_TIME_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.STANDARD_TIME_NOT_BLANK)
|
||||||
@DateTimeStrValid(format = "yyyy", message = DevValidMessage.STANDARD_TIME_FORMAT_ERROR)
|
@DateTimeStrValid(format = "yyyy", message = DetectionValidMessage.STANDARD_TIME_FORMAT_ERROR)
|
||||||
private String standardTime;
|
private String standardTime;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 额定电压
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("额定电压")
|
||||||
|
@NotNull(message = DetectionValidMessage.SCRIPT_TYPE_NOT_BLANK)
|
||||||
|
@Min(value = 0, message = DetectionValidMessage.SCRIPT_VOLT_FORMAT_ERROR)
|
||||||
|
@Max(value = 380, message = DetectionValidMessage.SCRIPT_VOLT_FORMAT_ERROR)
|
||||||
|
private Double ratedVolt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 额定电流
|
||||||
|
*/
|
||||||
|
@ApiModelProperty("额定电流")
|
||||||
|
@NotNull(message = DetectionValidMessage.SCRIPT_TYPE_NOT_BLANK)
|
||||||
|
@Min(value = 0, message = DetectionValidMessage.SCRIPT_CURR_FORMAT_ERROR)
|
||||||
|
@Max(value = 20, message = DetectionValidMessage.SCRIPT_CURR_FORMAT_ERROR)
|
||||||
|
private Double ratedCurr;
|
||||||
|
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
public static class QueryParam extends BaseParam {
|
public static class QueryParam extends BaseParam {
|
||||||
@@ -66,8 +86,8 @@ public class PqScriptParam {
|
|||||||
private String valueType;
|
private String valueType;
|
||||||
|
|
||||||
@ApiModelProperty("模式")
|
@ApiModelProperty("模式")
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PATTERN_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PATTERN_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
private String pattern;
|
private String pattern;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -75,7 +95,7 @@ public class PqScriptParam {
|
|||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
public static class UpdateParam extends PqScriptParam {
|
public static class UpdateParam extends PqScriptParam {
|
||||||
@ApiModelProperty("检测脚本ID")
|
@ApiModelProperty("检测脚本ID")
|
||||||
@NotBlank(message = DevValidMessage.ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = SystemValidMessage.ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = SystemValidMessage.ID_FORMAT_ERROR)
|
||||||
private String id;
|
private String id;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
package com.njcn.gather.script.pojo.param;
|
package com.njcn.gather.script.pojo.param;
|
||||||
|
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import javax.validation.constraints.*;
|
import javax.validation.constraints.NotBlank;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author caozehui
|
* @author caozehui
|
||||||
@@ -14,7 +16,7 @@ import javax.validation.constraints.*;
|
|||||||
public class ScriptParam {
|
public class ScriptParam {
|
||||||
|
|
||||||
@ApiModelProperty("检测脚本id")
|
@ApiModelProperty("检测脚本id")
|
||||||
@NotBlank(message = DevValidMessage.ID_FORMAT_ERROR)
|
@NotBlank(message = DetectionValidMessage.ID_FORMAT_ERROR)
|
||||||
private String scriptId;
|
private String scriptId;
|
||||||
|
|
||||||
@ApiModelProperty("检测脚本类型")
|
@ApiModelProperty("检测脚本类型")
|
||||||
@@ -25,4 +27,23 @@ public class ScriptParam {
|
|||||||
|
|
||||||
@ApiModelProperty("是否启用脚本(状态:0-不启用 1-启用)")
|
@ApiModelProperty("是否启用脚本(状态:0-不启用 1-启用)")
|
||||||
private Integer enable;
|
private Integer enable;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public static class Desc{
|
||||||
|
|
||||||
|
@ApiModelProperty("检测脚本id")
|
||||||
|
@NotBlank(message = DetectionValidMessage.ID_FORMAT_ERROR)
|
||||||
|
private String scriptId;
|
||||||
|
|
||||||
|
@ApiModelProperty("检测脚本序号")
|
||||||
|
@NotNull(message = "检测脚本序号错误,请检查参数是否为空")
|
||||||
|
private Integer index;
|
||||||
|
|
||||||
|
@ApiModelProperty("额定电压")
|
||||||
|
private BigDecimal devVolt;
|
||||||
|
|
||||||
|
@ApiModelProperty("额定电流")
|
||||||
|
private BigDecimal devCurr;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,6 +63,16 @@ public class PqScript extends BaseEntity implements Serializable {
|
|||||||
@JsonSerialize(using = LocalDateSerializer.class)
|
@JsonSerialize(using = LocalDateSerializer.class)
|
||||||
private LocalDate standardTime;
|
private LocalDate standardTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 额定电压
|
||||||
|
*/
|
||||||
|
private Double ratedVolt;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 额定电流
|
||||||
|
*/
|
||||||
|
private Double ratedCurr;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 状态:0-删除 1-正常
|
* 状态:0-删除 1-正常
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -18,17 +18,18 @@ public interface IPqScriptCheckDataService extends IService<PqScriptCheckData> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取检测指标类型
|
* 获取检测指标类型
|
||||||
|
*
|
||||||
* @param param
|
* @param param
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
List<String> getValueType(PqScriptCheckDataParam param);
|
List<String> getValueType(PqScriptCheckDataParam param);
|
||||||
|
|
||||||
|
|
||||||
|
Map<String, String> getValueTypeMap(String scriptId);
|
||||||
Map<String,String> getValueTypeMap(String scriptId);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取监测脚本code
|
* 获取监测脚本code
|
||||||
|
*
|
||||||
* @param param
|
* @param param
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -76,6 +76,7 @@ public interface IPqScriptDtlsService extends IService<PqScriptDtls> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 检测脚本单次小项数据新增
|
* 检测脚本单次小项数据新增
|
||||||
|
*
|
||||||
* @param sourceIssue
|
* @param sourceIssue
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@@ -83,12 +84,14 @@ public interface IPqScriptDtlsService extends IService<PqScriptDtls> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据通讯参数生成装置下发原始数据公式
|
* 根据通讯参数生成装置下发原始数据公式
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
List<PqScriptDtlsParam.CheckData> scriptDtlsCheckDataList(PqScriptDtlsParam sourceIssue);
|
List<PqScriptDtlsParam.CheckData> scriptDtlsCheckDataList(PqScriptDtlsParam sourceIssue);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除脚本
|
* 删除脚本
|
||||||
|
*
|
||||||
* @param param
|
* @param param
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@@ -96,6 +99,7 @@ public interface IPqScriptDtlsService extends IService<PqScriptDtls> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 启用关闭脚本
|
* 启用关闭脚本
|
||||||
|
*
|
||||||
* @param param
|
* @param param
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@@ -103,9 +107,18 @@ public interface IPqScriptDtlsService extends IService<PqScriptDtls> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 通讯脚本回显
|
* 通讯脚本回显
|
||||||
|
*
|
||||||
* @param param
|
* @param param
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
List<PqScriptCheckData> checkDataList(ScriptParam param);
|
List<PqScriptCheckData> checkDataList(ScriptParam param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description: 获取脚本详情描述
|
||||||
|
* @param param
|
||||||
|
* @return: java.lang.String
|
||||||
|
* @Author: wr
|
||||||
|
* @Date: 2025/3/31 9:40
|
||||||
|
*/
|
||||||
|
String getScriptDtlsDesc(ScriptParam.Desc param);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ public interface IPqScriptService extends IService<PqScript> {
|
|||||||
* @param param 检测脚本
|
* @param param 检测脚本
|
||||||
* @return 成功返回true, 失败返回false
|
* @return 成功返回true, 失败返回false
|
||||||
*/
|
*/
|
||||||
String addPqScript(PqScriptParam param);
|
Boolean addPqScript(PqScriptParam param);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除检测脚本
|
* 删除检测脚本
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import com.njcn.common.pojo.enums.common.DataStateEnum;
|
|||||||
import com.njcn.common.pojo.enums.response.CommonResponseEnum;
|
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.gather.detection.pojo.enums.DetectionCodeEnum;
|
import com.njcn.gather.detection.pojo.enums.DetectionCodeEnum;
|
||||||
|
import com.njcn.gather.detection.pojo.enums.DetectionResponseEnum;
|
||||||
import com.njcn.gather.script.mapper.PqScriptCheckDataMapper;
|
import com.njcn.gather.script.mapper.PqScriptCheckDataMapper;
|
||||||
import com.njcn.gather.script.pojo.param.PqScriptCheckDataParam;
|
import com.njcn.gather.script.pojo.param.PqScriptCheckDataParam;
|
||||||
import com.njcn.gather.script.pojo.po.PqScriptCheckData;
|
import com.njcn.gather.script.pojo.po.PqScriptCheckData;
|
||||||
@@ -80,7 +81,8 @@ public class PqScriptCheckDataServiceImpl extends ServiceImpl<PqScriptCheckDataM
|
|||||||
.eq(PqScriptCheckData::getEnable, DataStateEnum.ENABLE.getCode());
|
.eq(PqScriptCheckData::getEnable, DataStateEnum.ENABLE.getCode());
|
||||||
List<PqScriptCheckData> pqScriptCheckData = this.baseMapper.selectList(queryWrapper);
|
List<PqScriptCheckData> pqScriptCheckData = this.baseMapper.selectList(queryWrapper);
|
||||||
if(CollUtil.isEmpty(pqScriptCheckData)){
|
if(CollUtil.isEmpty(pqScriptCheckData)){
|
||||||
throw new BusinessException(CommonResponseEnum.FAIL,"测试脚本项暂无配置");
|
// throw new BusinessException(CommonResponseEnum.FAIL,"测试脚本项暂无配置");
|
||||||
|
throw new BusinessException(DetectionResponseEnum.SCRIPT_CHECK_DATA_NOT_EXIST);
|
||||||
}
|
}
|
||||||
List<String> valueTypeList = pqScriptCheckData.stream().map(PqScriptCheckData::getValueType).distinct().collect(Collectors.toList());
|
List<String> valueTypeList = pqScriptCheckData.stream().map(PqScriptCheckData::getValueType).distinct().collect(Collectors.toList());
|
||||||
LambdaQueryWrapper<DictTree> dictTreeLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
LambdaQueryWrapper<DictTree> dictTreeLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
||||||
|
|||||||
@@ -85,13 +85,13 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
|||||||
private final IDictTreeService dictTreeService;
|
private final IDictTreeService dictTreeService;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean savePqScriptDtls(PqScriptDtls pqScriptDtls) {
|
public boolean savePqScriptDtls(PqScriptDtls pqScriptDtls) {
|
||||||
return this.save(pqScriptDtls);
|
return this.save(pqScriptDtls);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deletePqScriptDtlsByIds(List<String> ids) {
|
public boolean deletePqScriptDtlsByIds(List<String> ids) {
|
||||||
LambdaQueryWrapper<PqScriptDtls> queryWrapper = new LambdaQueryWrapper<>();
|
LambdaQueryWrapper<PqScriptDtls> queryWrapper = new LambdaQueryWrapper<>();
|
||||||
queryWrapper.in(PqScriptDtls::getId, ids);
|
queryWrapper.in(PqScriptDtls::getId, ids);
|
||||||
@@ -99,7 +99,7 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deletePqScriptDtlsByScriptId(List<String> scriptIds) {
|
public boolean deletePqScriptDtlsByScriptId(List<String> scriptIds) {
|
||||||
LambdaQueryWrapper<PqScriptDtls> queryWrapper = new LambdaQueryWrapper<>();
|
LambdaQueryWrapper<PqScriptDtls> queryWrapper = new LambdaQueryWrapper<>();
|
||||||
queryWrapper.in(PqScriptDtls::getScriptId, scriptIds);
|
queryWrapper.in(PqScriptDtls::getScriptId, scriptIds);
|
||||||
@@ -107,7 +107,7 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updatePqScriptDtls(PqScriptDtls pqScriptDtls) {
|
public boolean updatePqScriptDtls(PqScriptDtls pqScriptDtls) {
|
||||||
return this.updateById(pqScriptDtls);
|
return this.updateById(pqScriptDtls);
|
||||||
}
|
}
|
||||||
@@ -154,7 +154,6 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (voltSet.size() == 1 && currSet.size() == 1) {
|
if (voltSet.size() == 1 && currSet.size() == 1) {
|
||||||
Double volt = voltSet.stream().collect(Collectors.toList()).stream().findFirst().get();
|
Double volt = voltSet.stream().collect(Collectors.toList()).stream().findFirst().get();
|
||||||
Double curr = currSet.stream().collect(Collectors.toList()).stream().findFirst().get();
|
Double curr = currSet.stream().collect(Collectors.toList()).stream().findFirst().get();
|
||||||
@@ -193,7 +192,7 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
|||||||
checkDataParam.setIndex(freqDtls.getScriptIndex());
|
checkDataParam.setIndex(freqDtls.getScriptIndex());
|
||||||
checkDataParam.setIsValueTypeName(true);
|
checkDataParam.setIsValueTypeName(true);
|
||||||
issue.setDevValueTypeList(pqScriptCheckDataService.getValueType(checkDataParam));
|
issue.setDevValueTypeList(pqScriptCheckDataService.getValueType(checkDataParam));
|
||||||
issue.setDesc(ScriptDtlsDesc.getStringBuffer(value,true, isValueType).toString());
|
issue.setDesc(ScriptDtlsDesc.getStringBuffer(value, true, isValueType).toString());
|
||||||
issue.setScriptId(freqDtls.getScriptId());
|
issue.setScriptId(freqDtls.getScriptId());
|
||||||
issue.setFUn(volt);
|
issue.setFUn(volt);
|
||||||
issue.setFIn(curr);
|
issue.setFIn(curr);
|
||||||
@@ -249,7 +248,7 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public Boolean saveScriptDtls(PqScriptDtlsParam sourceIssue) {
|
public Boolean saveScriptDtls(PqScriptDtlsParam sourceIssue) {
|
||||||
List<PqScriptDtls> info = new ArrayList<>();
|
List<PqScriptDtls> info = new ArrayList<>();
|
||||||
List<PqScriptCheckData> checkList = new ArrayList<>();
|
List<PqScriptCheckData> checkList = new ArrayList<>();
|
||||||
@@ -649,6 +648,39 @@ public class PqScriptDtlsServiceImpl extends ServiceImpl<PqScriptDtlsMapper, PqS
|
|||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getScriptDtlsDesc(ScriptParam.Desc param) {
|
||||||
|
Boolean isValueType = pqScriptMapper.selectScriptIsValueType(param.getScriptId());
|
||||||
|
MPJLambdaWrapper<PqScriptDtls> queryWrapper = new MPJLambdaWrapper<>();
|
||||||
|
queryWrapper.selectAll(PqScriptDtls.class)
|
||||||
|
.selectAs(DictTree::getCode, PqScriptDtls::getScriptCode)
|
||||||
|
.leftJoin(DictTree.class, DictTree::getId, PqScriptDtls::getScriptType)
|
||||||
|
.in(PqScriptDtls::getScriptIndex, param.getIndex())
|
||||||
|
.eq(PqScriptCheckData::getEnable, DataStateEnum.ENABLE.getCode())
|
||||||
|
.orderByAsc(PqScriptCheckData::getScriptIndex)
|
||||||
|
.eq(PqScriptDtls::getScriptId, param.getScriptId());
|
||||||
|
|
||||||
|
//先获取检测脚本类型是否相对值 true相对值 false绝对值(相对值要乘额定值,绝对值不需要处理)
|
||||||
|
List<PqScriptDtls> pqScriptDtls = this.getBaseMapper().selectJoinList(PqScriptDtls.class, queryWrapper);
|
||||||
|
if (isValueType) {
|
||||||
|
for (PqScriptDtls pqScriptDtl : pqScriptDtls) {
|
||||||
|
if (VOL.equals(pqScriptDtl.getValueType())) {
|
||||||
|
BigDecimal volValue = new BigDecimal(pqScriptDtl.getValue());
|
||||||
|
BigDecimal result = volValue.multiply(param.getDevVolt())
|
||||||
|
.divide(new BigDecimal(100), 4, BigDecimal.ROUND_HALF_UP);
|
||||||
|
pqScriptDtl.setValue(result.doubleValue());
|
||||||
|
}
|
||||||
|
if (CUR.equals(pqScriptDtl.getValueType())) {
|
||||||
|
BigDecimal volValue = new BigDecimal(pqScriptDtl.getValue());
|
||||||
|
BigDecimal result = volValue.multiply(param.getDevCurr())
|
||||||
|
.divide(new BigDecimal(100), 4, BigDecimal.ROUND_HALF_UP);
|
||||||
|
pqScriptDtl.setValue(result.doubleValue());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ScriptDtlsDesc.getStringBuffer(pqScriptDtls, true, isValueType).toString();
|
||||||
|
}
|
||||||
|
|
||||||
private void unbanCheck(List<PqScriptDtlsParam.CheckData> info,
|
private void unbanCheck(List<PqScriptDtlsParam.CheckData> info,
|
||||||
PqScriptDtlsParam.CheckData channelListDTO,
|
PqScriptDtlsParam.CheckData channelListDTO,
|
||||||
List<PqScriptDtlsParam.ChannelListDTO> list,
|
List<PqScriptDtlsParam.ChannelListDTO> list,
|
||||||
|
|||||||
@@ -8,10 +8,8 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
||||||
import com.njcn.common.pojo.exception.BusinessException;
|
import com.njcn.common.pojo.exception.BusinessException;
|
||||||
import com.njcn.gather.plan.pojo.po.AdPlan;
|
import com.njcn.gather.pojo.enums.DetectionResponseEnum;
|
||||||
import com.njcn.gather.plan.service.IAdPlanService;
|
|
||||||
import com.njcn.gather.script.mapper.PqScriptMapper;
|
import com.njcn.gather.script.mapper.PqScriptMapper;
|
||||||
import com.njcn.gather.script.pojo.enums.ScriptResponseEnum;
|
|
||||||
import com.njcn.gather.script.pojo.param.PqScriptParam;
|
import com.njcn.gather.script.pojo.param.PqScriptParam;
|
||||||
import com.njcn.gather.script.pojo.po.PqScript;
|
import com.njcn.gather.script.pojo.po.PqScript;
|
||||||
import com.njcn.gather.script.service.IPqScriptDtlsService;
|
import com.njcn.gather.script.service.IPqScriptDtlsService;
|
||||||
@@ -59,31 +57,31 @@ public class PqScriptServiceImpl extends ServiceImpl<PqScriptMapper, PqScript> i
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public String addPqScript(PqScriptParam param) {
|
public Boolean addPqScript(PqScriptParam param) {
|
||||||
PqScript pqScript = new PqScript();
|
PqScript pqScript = new PqScript();
|
||||||
BeanUtils.copyProperties(param, pqScript);
|
BeanUtils.copyProperties(param, pqScript);
|
||||||
pqScript.setStandardTime(LocalDate.of(Integer.parseInt(param.getStandardTime()), 1, 1));
|
pqScript.setStandardTime(LocalDate.of(Integer.parseInt(param.getStandardTime()), 1, 1));
|
||||||
pqScript.setState(DataStateEnum.ENABLE.getCode());
|
pqScript.setState(DataStateEnum.ENABLE.getCode());
|
||||||
this.save(pqScript);
|
return this.save(pqScript);
|
||||||
return pqScript.getId();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updatePqScript(PqScriptParam.UpdateParam param) {
|
public boolean updatePqScript(PqScriptParam.UpdateParam param) {
|
||||||
PqScript pqScript = new PqScript();
|
PqScript pqScript = new PqScript();
|
||||||
BeanUtils.copyProperties(param, pqScript);
|
BeanUtils.copyProperties(param, pqScript);
|
||||||
|
pqScript.setStandardTime(LocalDate.of(Integer.parseInt(param.getStandardTime()), 1, 1));
|
||||||
pqScript.setState(DataStateEnum.ENABLE.getCode());
|
pqScript.setState(DataStateEnum.ENABLE.getCode());
|
||||||
return this.updateById(pqScript);
|
return this.updateById(pqScript);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deletePqScript(List<String> ids) {
|
public boolean deletePqScript(List<String> ids) {
|
||||||
Integer count = this.baseMapper.getBoundCountByScriptIds(ids);
|
Integer count = this.baseMapper.getBoundCountByScriptIds(ids);
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
throw new BusinessException(ScriptResponseEnum.SCRIPT_BOUND_NOT_DELETE);
|
throw new BusinessException(DetectionResponseEnum.SCRIPT_BOUND_NOT_DELETE);
|
||||||
}
|
}
|
||||||
//删除对应的脚本详情
|
//删除对应的脚本详情
|
||||||
pqScriptDtlsService.deletePqScriptDtlsByScriptId(ids);
|
pqScriptDtlsService.deletePqScriptDtlsByScriptId(ids);
|
||||||
@@ -94,7 +92,7 @@ public class PqScriptServiceImpl extends ServiceImpl<PqScriptMapper, PqScript> i
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean upgradeToTemplate(String id) {
|
public boolean upgradeToTemplate(String id) {
|
||||||
PqScript pqScript = this.lambdaQuery().eq(PqScript::getId, id).one();
|
PqScript pqScript = this.lambdaQuery().eq(PqScript::getId, id).one();
|
||||||
if (pqScript != null) {
|
if (pqScript != null) {
|
||||||
|
|||||||
@@ -16,6 +16,15 @@ import java.util.stream.Collectors;
|
|||||||
* @date 2025/1/13 22:05
|
* @date 2025/1/13 22:05
|
||||||
*/
|
*/
|
||||||
public class ScriptDtlsDesc {
|
public class ScriptDtlsDesc {
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @param scriptDtlIndex 检测脚本集合
|
||||||
|
* @param isScript 是否为下源检测脚本(true 则为下源检测脚本里面所有单位都是值类型)
|
||||||
|
* @param isValueType 用来检测脚本是相对类型,还是绝对类型
|
||||||
|
* @return: java.lang.StringBuffer
|
||||||
|
* @Author: wr
|
||||||
|
* @Date: 2025/3/27 15:20
|
||||||
|
*/
|
||||||
public static StringBuffer getStringBuffer(List<PqScriptDtls> scriptDtlIndex,Boolean isScript, Boolean isValueType) {
|
public static StringBuffer getStringBuffer(List<PqScriptDtls> scriptDtlIndex,Boolean isScript, Boolean isValueType) {
|
||||||
if (ObjectUtil.isNull(isValueType)) {
|
if (ObjectUtil.isNull(isValueType)) {
|
||||||
isValueType = true;
|
isValueType = true;
|
||||||
|
|||||||
@@ -65,14 +65,14 @@ public class PqSourceController extends BaseController {
|
|||||||
@PostMapping("/add")
|
@PostMapping("/add")
|
||||||
@ApiOperation("新增检测源")
|
@ApiOperation("新增检测源")
|
||||||
@ApiImplicitParam(name = "param", value = "检测源", required = true)
|
@ApiImplicitParam(name = "param", value = "检测源", required = true)
|
||||||
public HttpResult<Object> add(@RequestBody @Validated PqSourceParam param) {
|
public HttpResult<Boolean> add(@RequestBody @Validated PqSourceParam param) {
|
||||||
String methodDescribe = getMethodDescribe("add");
|
String methodDescribe = getMethodDescribe("add");
|
||||||
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, param);
|
||||||
boolean result = pqSourceService.addPqSource(param);
|
boolean result = pqSourceService.addPqSource(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,14 +80,14 @@ public class PqSourceController extends BaseController {
|
|||||||
@PostMapping("/update")
|
@PostMapping("/update")
|
||||||
@ApiOperation("修改检测源")
|
@ApiOperation("修改检测源")
|
||||||
@ApiImplicitParam(name = "param", value = "检测源", required = true)
|
@ApiImplicitParam(name = "param", value = "检测源", required = true)
|
||||||
public HttpResult<Object> update(@RequestBody @Validated PqSourceParam.UpdateParam param) {
|
public HttpResult<Boolean> update(@RequestBody @Validated PqSourceParam.UpdateParam param) {
|
||||||
String methodDescribe = getMethodDescribe("update");
|
String methodDescribe = getMethodDescribe("update");
|
||||||
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, param);
|
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, param);
|
||||||
boolean result = pqSourceService.updatePqSource(param);
|
boolean result = pqSourceService.updatePqSource(param);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -95,14 +95,14 @@ public class PqSourceController extends BaseController {
|
|||||||
@PostMapping("/delete")
|
@PostMapping("/delete")
|
||||||
@ApiOperation("删除检测源")
|
@ApiOperation("删除检测源")
|
||||||
@ApiImplicitParam(name = "ids", value = "检测源id", required = true)
|
@ApiImplicitParam(name = "ids", value = "检测源id", required = true)
|
||||||
public HttpResult<Object> delete(@RequestBody List<String> ids) {
|
public HttpResult<Boolean> delete(@RequestBody List<String> ids) {
|
||||||
String methodDescribe = getMethodDescribe("delete");
|
String methodDescribe = getMethodDescribe("delete");
|
||||||
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
LogUtil.njcnDebug(log, "{},删除ID数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
||||||
boolean result = pqSourceService.deletePqSource(ids);
|
boolean result = pqSourceService.deletePqSource(ids);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
package com.njcn.gather.source.pojo.constant;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-03-07
|
|
||||||
*/
|
|
||||||
public interface PqSourceValidMessage {
|
|
||||||
String ID_NOT_BLANK = "检测源id不能为空";
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
package com.njcn.gather.source.pojo.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author caozehui
|
|
||||||
* @data 2025-03-10
|
|
||||||
*/
|
|
||||||
@Getter
|
|
||||||
public enum SourceResponseEnum {
|
|
||||||
SOURCE_BOUND_NOT_DELETE("A030001", "源已被计划所绑定,无法删除!");
|
|
||||||
|
|
||||||
private String code;
|
|
||||||
private String message;
|
|
||||||
|
|
||||||
SourceResponseEnum(String code, String message) {
|
|
||||||
this.code = code;
|
|
||||||
this.message = message;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
package com.njcn.gather.source.pojo.param;
|
package com.njcn.gather.source.pojo.param;
|
||||||
|
|
||||||
import com.njcn.common.pojo.constant.PatternRegex;
|
import com.njcn.common.pojo.constant.PatternRegex;
|
||||||
import com.njcn.gather.device.pojo.constant.DevValidMessage;
|
import com.njcn.gather.pojo.constant.DetectionValidMessage;
|
||||||
import com.njcn.web.pojo.param.BaseParam;
|
import com.njcn.web.pojo.param.BaseParam;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
@@ -28,31 +28,29 @@ public class PqSourceParam {
|
|||||||
/**
|
/**
|
||||||
* 检测模式,字典表
|
* 检测模式,字典表
|
||||||
*/
|
*/
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PATTERN_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PATTERN_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
private String pattern;
|
private String pattern;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 检测源类型,字典表
|
* 检测源类型,字典表
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "检测源类型", required = true)
|
@ApiModelProperty(value = "检测源类型", required = true)
|
||||||
@NotBlank(message = DevValidMessage.PQ_SOURCE_TYPE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PQ_SOURCE_TYPE_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PQ_SOURCE_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PQ_SOURCE_TYPE_FORMAT_ERROR)
|
||||||
private String type;
|
private String type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设备类型,字典表
|
* 设备类型,字典表
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "设备类型", required = true)
|
@ApiModelProperty(value = "设备类型", required = true)
|
||||||
@NotBlank(message = DevValidMessage.DEV_TYPE_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.DEV_TYPE_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.DEV_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.DEV_TYPE_FORMAT_ERROR)
|
||||||
private String devType;
|
private String devType;
|
||||||
|
|
||||||
@ApiModelProperty("源参数")
|
@ApiModelProperty("源参数")
|
||||||
private String parameter;
|
private String parameter;
|
||||||
|
|
||||||
// @ApiModelProperty("源参数")
|
|
||||||
// private List<PqSourceParameterParam> parameterList;
|
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public static class QueryParam extends BaseParam {
|
public static class QueryParam extends BaseParam {
|
||||||
@@ -60,16 +58,16 @@ public class PqSourceParam {
|
|||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@ApiModelProperty("模式")
|
@ApiModelProperty("模式")
|
||||||
@NotBlank(message = DevValidMessage.PATTERN_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.PATTERN_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PATTERN_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PATTERN_FORMAT_ERROR)
|
||||||
private String pattern;
|
private String pattern;
|
||||||
|
|
||||||
@ApiModelProperty(value = "检测源类型")
|
@ApiModelProperty(value = "检测源类型")
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.PQ_SOURCE_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.PQ_SOURCE_TYPE_FORMAT_ERROR)
|
||||||
private String type;
|
private String type;
|
||||||
|
|
||||||
@ApiModelProperty(value = "设备类型")
|
@ApiModelProperty(value = "设备类型")
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.DEV_TYPE_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.DEV_TYPE_FORMAT_ERROR)
|
||||||
private String devType;
|
private String devType;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -77,8 +75,8 @@ public class PqSourceParam {
|
|||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
public static class UpdateParam extends PqSourceParam {
|
public static class UpdateParam extends PqSourceParam {
|
||||||
@ApiModelProperty(value = "检测源ID", required = true)
|
@ApiModelProperty(value = "检测源ID", required = true)
|
||||||
@NotBlank(message = DevValidMessage.ID_NOT_BLANK)
|
@NotBlank(message = DetectionValidMessage.ID_NOT_BLANK)
|
||||||
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DevValidMessage.ID_FORMAT_ERROR)
|
@Pattern(regexp = PatternRegex.SYSTEM_ID, message = DetectionValidMessage.ID_FORMAT_ERROR)
|
||||||
private String id;
|
private String id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,25 +11,26 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|||||||
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
import com.njcn.common.pojo.enums.common.DataStateEnum;
|
||||||
import com.njcn.common.pojo.exception.BusinessException;
|
import com.njcn.common.pojo.exception.BusinessException;
|
||||||
import com.njcn.gather.device.pojo.enums.CommonEnum;
|
import com.njcn.gather.device.pojo.enums.CommonEnum;
|
||||||
import com.njcn.gather.device.pojo.enums.DevResponseEnum;
|
import com.njcn.gather.pojo.enums.DetectionResponseEnum;
|
||||||
import com.njcn.gather.source.mapper.PqSourceMapper;
|
import com.njcn.gather.source.mapper.PqSourceMapper;
|
||||||
import com.njcn.gather.source.pojo.enums.SourceResponseEnum;
|
|
||||||
import com.njcn.gather.source.pojo.param.PqSourceParam;
|
import com.njcn.gather.source.pojo.param.PqSourceParam;
|
||||||
import com.njcn.gather.source.pojo.po.PqSource;
|
import com.njcn.gather.source.pojo.po.PqSource;
|
||||||
import com.njcn.gather.source.pojo.po.SourceInitialize;
|
import com.njcn.gather.source.pojo.po.SourceInitialize;
|
||||||
import com.njcn.gather.source.pojo.po.SourceParam;
|
import com.njcn.gather.source.pojo.po.SourceParam;
|
||||||
import com.njcn.gather.source.service.IPqSourceService;
|
import com.njcn.gather.source.service.IPqSourceService;
|
||||||
import com.njcn.gather.type.pojo.po.DevType;
|
|
||||||
import com.njcn.gather.type.service.IDevTypeService;
|
|
||||||
import com.njcn.gather.system.dictionary.pojo.po.DictData;
|
import com.njcn.gather.system.dictionary.pojo.po.DictData;
|
||||||
import com.njcn.gather.system.dictionary.service.IDictDataService;
|
import com.njcn.gather.system.dictionary.service.IDictDataService;
|
||||||
|
import com.njcn.gather.type.service.IDevTypeService;
|
||||||
import com.njcn.web.factory.PageFactory;
|
import com.njcn.web.factory.PageFactory;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.transaction.annotation.Transactional;
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.Comparator;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -64,7 +65,7 @@ public class PqSourceServiceImpl extends ServiceImpl<PqSourceMapper, PqSource> i
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean addPqSource(PqSourceParam param) {
|
public boolean addPqSource(PqSourceParam param) {
|
||||||
PqSource pqSource = new PqSource();
|
PqSource pqSource = new PqSource();
|
||||||
BeanUtil.copyProperties(param, pqSource);
|
BeanUtil.copyProperties(param, pqSource);
|
||||||
@@ -75,7 +76,7 @@ public class PqSourceServiceImpl extends ServiceImpl<PqSourceMapper, PqSource> i
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean updatePqSource(PqSourceParam.UpdateParam param) {
|
public boolean updatePqSource(PqSourceParam.UpdateParam param) {
|
||||||
PqSource pqSource = new PqSource();
|
PqSource pqSource = new PqSource();
|
||||||
BeanUtil.copyProperties(param, pqSource);
|
BeanUtil.copyProperties(param, pqSource);
|
||||||
@@ -84,11 +85,11 @@ public class PqSourceServiceImpl extends ServiceImpl<PqSourceMapper, PqSource> i
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Transactional(rollbackFor = {Exception.class})
|
@Transactional
|
||||||
public boolean deletePqSource(List<String> ids) {
|
public boolean deletePqSource(List<String> ids) {
|
||||||
Integer count = this.baseMapper.getCountBoundByIds(ids);
|
Integer count = this.baseMapper.getCountBoundByIds(ids);
|
||||||
if(count > 0){
|
if (count > 0) {
|
||||||
throw new BusinessException(SourceResponseEnum.SOURCE_BOUND_NOT_DELETE);
|
throw new BusinessException(DetectionResponseEnum.SOURCE_BOUND_NOT_DELETE);
|
||||||
}
|
}
|
||||||
return this.lambdaUpdate().in(PqSource::getId, ids).set(PqSource::getState, DataStateEnum.DELETED.getCode()).update();
|
return this.lambdaUpdate().in(PqSource::getId, ids).set(PqSource::getState, DataStateEnum.DELETED.getCode()).update();
|
||||||
}
|
}
|
||||||
@@ -133,7 +134,7 @@ public class PqSourceServiceImpl extends ServiceImpl<PqSourceMapper, PqSource> i
|
|||||||
.peek(p -> p.setChildren(getInitializeChildren(p, list)))
|
.peek(p -> p.setChildren(getInitializeChildren(p, list)))
|
||||||
.sorted(Comparator.comparingInt(SourceInitialize.Initialize::getSort))
|
.sorted(Comparator.comparingInt(SourceInitialize.Initialize::getSort))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
if(CollUtil.isNotEmpty(sourceParams)){
|
if (CollUtil.isNotEmpty(sourceParams)) {
|
||||||
SourceInitialize initialize = new SourceInitialize();
|
SourceInitialize initialize = new SourceInitialize();
|
||||||
SourceInitialize.Initialize source = sourceParams.get(0);
|
SourceInitialize.Initialize source = sourceParams.get(0);
|
||||||
initialize.setSourceId(source.getValue());
|
initialize.setSourceId(source.getValue());
|
||||||
@@ -169,34 +170,6 @@ public class PqSourceServiceImpl extends ServiceImpl<PqSourceMapper, PqSource> i
|
|||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
// private List<SourceParam> filterTree(List<SourceParam> tree, String keyword) {
|
|
||||||
// if (CollectionUtils.isEmpty(tree) || StrUtil.isBlank(keyword)) {
|
|
||||||
// return tree;
|
|
||||||
// }
|
|
||||||
// filter(tree, keyword);
|
|
||||||
// return tree;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// private void filter(List<SourceParam> list, String keyword) {
|
|
||||||
// for (int i = list.size() - 1; i >= 0; i--) {
|
|
||||||
// SourceParam sourceParam = list.get(i);
|
|
||||||
// List<SourceParam> children = sourceParam.getChildren();
|
|
||||||
// if (!keyword.equals(sourceParam.getType())) {
|
|
||||||
// if (!CollectionUtils.isEmpty(children)) {
|
|
||||||
// filter(children, keyword);
|
|
||||||
// }
|
|
||||||
// if (CollectionUtils.isEmpty(sourceParam.getChildren())) {
|
|
||||||
// list.remove(i);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// else {
|
|
||||||
// if (!CollectionUtils.isEmpty(children)) {
|
|
||||||
// filter(children, keyword);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 生成检测源名称(检测源类型+设备类型+数字)
|
* 生成检测源名称(检测源类型+设备类型+数字)
|
||||||
@@ -222,6 +195,6 @@ public class PqSourceServiceImpl extends ServiceImpl<PqSourceMapper, PqSource> i
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
throw new BusinessException(DevResponseEnum.PQ_SOURCE_GEN_NAME_ERROR);
|
throw new BusinessException(DetectionResponseEnum.PQ_SOURCE_GEN_NAME_ERROR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,15 +66,15 @@ public class DevTypeController extends BaseController {
|
|||||||
@PostMapping("/add")
|
@PostMapping("/add")
|
||||||
@ApiOperation("新增设备类型")
|
@ApiOperation("新增设备类型")
|
||||||
@ApiImplicitParam(name = "devTypeParam", value = "设备类型", required = true)
|
@ApiImplicitParam(name = "devTypeParam", value = "设备类型", required = true)
|
||||||
public HttpResult<String> add(@RequestBody @Validated DevTypeParam devTypeParam) {
|
public HttpResult<Boolean> add(@RequestBody @Validated DevTypeParam devTypeParam) {
|
||||||
String methodDescribe = getMethodDescribe("add");
|
String methodDescribe = getMethodDescribe("add");
|
||||||
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, devTypeParam);
|
LogUtil.njcnDebug(log, "{},新增数据为:{}", methodDescribe, devTypeParam);
|
||||||
|
|
||||||
boolean result = devTypeService.addDevType(devTypeParam);
|
boolean result = devTypeService.addDevType(devTypeParam);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,15 +82,15 @@ public class DevTypeController extends BaseController {
|
|||||||
@PostMapping("/update")
|
@PostMapping("/update")
|
||||||
@ApiOperation("修改设备类型")
|
@ApiOperation("修改设备类型")
|
||||||
@ApiImplicitParam(name = "devTypeParam", value = "设备类型", required = true)
|
@ApiImplicitParam(name = "devTypeParam", value = "设备类型", required = true)
|
||||||
public HttpResult<String> update(@RequestBody @Validated DevTypeParam.UpdateParam updateParam) {
|
public HttpResult<Boolean> update(@RequestBody @Validated DevTypeParam.UpdateParam updateParam) {
|
||||||
String methodDescribe = getMethodDescribe("update");
|
String methodDescribe = getMethodDescribe("update");
|
||||||
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, updateParam);
|
LogUtil.njcnDebug(log, "{},修改数据为:{}", methodDescribe, updateParam);
|
||||||
|
|
||||||
boolean result = devTypeService.updateDevType(updateParam);
|
boolean result = devTypeService.updateDevType(updateParam);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -98,14 +98,14 @@ public class DevTypeController extends BaseController {
|
|||||||
@PostMapping("/delete")
|
@PostMapping("/delete")
|
||||||
@ApiOperation("删除设备类型")
|
@ApiOperation("删除设备类型")
|
||||||
@ApiImplicitParam(name = "ids", value = "设备类型id列表", required = true)
|
@ApiImplicitParam(name = "ids", value = "设备类型id列表", required = true)
|
||||||
public HttpResult<String> delete(@RequestBody List<String> ids) {
|
public HttpResult<Boolean> delete(@RequestBody List<String> ids) {
|
||||||
String methodDescribe = getMethodDescribe("delete");
|
String methodDescribe = getMethodDescribe("delete");
|
||||||
LogUtil.njcnDebug(log, "{},删除数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
LogUtil.njcnDebug(log, "{},删除数据为:{}", methodDescribe, String.join(StrUtil.COMMA, ids));
|
||||||
boolean result = devTypeService.deleteDevType(ids);
|
boolean result = devTypeService.deleteDevType(ids);
|
||||||
if (result) {
|
if (result) {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, true, methodDescribe);
|
||||||
} else {
|
} else {
|
||||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, null, methodDescribe);
|
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.FAIL, false, methodDescribe);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user