fix:指标目标值由targetValue改成highValue
This commit is contained in:
@@ -2116,7 +2116,7 @@ public class SimulationRunServiceImpl extends ServiceImpl<SimulationRunMapper, S
|
||||
|
||||
public String getCompleteStatus(SimulationPerformance simulationPerformance) {
|
||||
// 目标值
|
||||
String targetValueStr = simulationPerformance.getTargetValue();
|
||||
String targetValueStr = simulationPerformance.getHighValue();
|
||||
// 分析值
|
||||
String resultValueStr = simulationPerformance.getResultValue();
|
||||
// 达标方式
|
||||
@@ -2988,7 +2988,7 @@ public class SimulationRunServiceImpl extends ServiceImpl<SimulationRunMapper, S
|
||||
// 图片试验结果
|
||||
SimulationExperimentResult imageExp = simulationExpResultService.lambdaQuery().eq(SimulationExperimentResult::getImageId, fileId).one();
|
||||
if (imageExp != null) {
|
||||
if (imageExp.getFileId() == null) {
|
||||
if (ObjectUtils.isEmpty(imageExp.getFileId())) {
|
||||
simulationExpResultService.removeById(imageExp.getId());
|
||||
} else {
|
||||
imageExp.setImageId(null);
|
||||
@@ -3001,7 +3001,7 @@ public class SimulationRunServiceImpl extends ServiceImpl<SimulationRunMapper, S
|
||||
List<Long> oldFileIds = new ArrayList<>(Arrays.stream(fileExp.getFileId().split(",")).mapToLong(Long::parseLong).boxed().toList());
|
||||
oldFileIds.remove(fileId);
|
||||
if (oldFileIds.isEmpty()) {
|
||||
if (fileExp.getImageId() == null) {
|
||||
if (ObjectUtils.isEmpty(fileExp.getFileId())) {
|
||||
simulationExpResultService.removeById(fileExp.getId());
|
||||
} else {
|
||||
fileExp.setFileId(null);
|
||||
|
||||
@@ -3143,6 +3143,7 @@ public class TaskServiceImpl implements ITaskService {
|
||||
}
|
||||
if (CollectionUtils.isNotEmpty(spdmAUserVoList)) {
|
||||
taskVo.setPayAttentionMemberList(spdmAUserVoList);
|
||||
taskVo.setAMemberList(spdmAUserVoList);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -182,7 +182,7 @@ public class SimulationPerformanceServiceImpl extends ServiceImpl<SimulationPerf
|
||||
|
||||
private SdmResponse setCompleteStatus(SimulationPerformance simulationPerformance) {
|
||||
// 目标值
|
||||
String targetValueStr = simulationPerformance.getTargetValue();
|
||||
String targetValueStr = simulationPerformance.getHighValue();
|
||||
// 分析值
|
||||
String resultValueStr = simulationPerformance.getResultValue();
|
||||
// 达标方式
|
||||
|
||||
Reference in New Issue
Block a user