|
|
|
@ -138,8 +138,8 @@ public class ModelServiceImpl implements ModelService {
|
|
|
|
|
|
|
|
|
|
// 所有原子指标id,判断结果
|
|
|
|
|
Set<String> checkAtomicResult = Set.of("-1", "0", "1");
|
|
|
|
|
if (!checkAtomicResult.contains(result.getAtomicResult())) {
|
|
|
|
|
throw new RuntimeException("TEST:不被支持的校核结果,需排查BUG,atomicId:" + result.getAtomicId() + " result:" + result.getAtomicResult());
|
|
|
|
|
if (StrUtil.isNotBlank(result.getAtomicResult()) && !checkAtomicResult.contains(result.getAtomicResult())) {
|
|
|
|
|
log.error("TEST:不被支持的校核结果,需排查BUG,atomicId:" + result.getAtomicId() + " result:" + result.getAtomicResult());
|
|
|
|
|
}
|
|
|
|
|
atomicResultMap.put(result.getAtomicId(), result.getAtomicResult());
|
|
|
|
|
}
|
|
|
|
|