|
@@ -205,6 +205,11 @@ public class AlgorithmModelTrackServiceImpl extends BaseServiceImpl<AlgorithmMod
|
|
map.put("value", algorithmModelTrack.getId());
|
|
map.put("value", algorithmModelTrack.getId());
|
|
map.put("label", algorithmModelTrack.getModelName());
|
|
map.put("label", algorithmModelTrack.getModelName());
|
|
|
|
|
|
|
|
+ AlgorithmConfigTrack config = algorithmConfigTrackService.getById(algorithmModelTrack.getAlgorithmId());
|
|
|
|
+ map.put("algorithmName", config.getAlgorithmName());
|
|
|
|
+ map.put("type", config.getType());
|
|
|
|
+ map.put("subsystem", config.getSubsystem());
|
|
|
|
+
|
|
result.add(map);
|
|
result.add(map);
|
|
}
|
|
}
|
|
|
|
|