|
@@ -177,8 +177,10 @@ public class AlgorithmTaskTrackServiceImpl extends BaseServiceImpl<AlgorithmTask
|
|
|
trackSequenceBo.setRemarks((String) params.get("remarks"));
|
|
|
trackSequenceBo.setParentTaskId(parseLong(params.get("parentTaskId")));
|
|
|
|
|
|
- // trackSequenceBo.setAlgorithmModelId((Long)
|
|
|
- // params.get("trackSequenceEvaluateModelId"));
|
|
|
+ if (ObjectUtil.isNull(params.get("trackSequenceEvaluateAlgorithmId"))) {
|
|
|
+ throw new IllegalArgumentException("评估算法为空!");
|
|
|
+ }
|
|
|
+
|
|
|
trackSequenceBo.setAlgorithmId(parseLong(params.get("trackSequenceEvaluateAlgorithmId")));
|
|
|
trackSequenceBo.setAlgorithmModelTargetDetectionId(parseLong(params.get("TD_modelId")));
|
|
|
trackSequenceBo.setPredictTaskId(parseLong(params.get("trackSequencePredictTaskId")));
|