|
@@ -202,10 +202,11 @@ public class AlgorithmService implements IAlgorithmService {
|
|
|
@Transactional
|
|
|
public String executeFault(AlgorithmBo algorithmBo) {
|
|
|
// 模型相关信息
|
|
|
- ModelVo modelVo = modelService.selectById(algorithmBo.getModelId());
|
|
|
+ ModelVo modelVo = modelService.selectByPartId(algorithmBo.getPartId());
|
|
|
if (ObjectUtil.isNull(modelVo)) {
|
|
|
throw new BusinessException("模型信息为空,请检查!");
|
|
|
}
|
|
|
+ algorithmBo.setColumnData(modelVo.getColumnData().split(","));
|
|
|
SysOssVo sysOssVo = getSysOssVo(algorithmBo);
|
|
|
if (sysOssVo == null) {
|
|
|
return null;
|