|
@@ -130,7 +130,7 @@ public class PredictTaskController {
|
|
|
}
|
|
|
|
|
|
// 后处理组件
|
|
|
- Map<String, Object> postProcessing = (Map<String, Object>) taskInfo.get("postProcessing");
|
|
|
+ Map<String, Object> postProcessing = (Map<String, Object>) taskInfo.get("processing");
|
|
|
if (postProcessing != null) {
|
|
|
Boolean isEnable = parseEnableValue(postProcessing.get("enable"), "后处理");
|
|
|
String type = (String) postProcessing.get("name");
|
|
@@ -143,7 +143,7 @@ public class PredictTaskController {
|
|
|
}
|
|
|
|
|
|
// 分析报告组件
|
|
|
- Map<String, Object> analysisReport = (Map<String, Object>) taskInfo.get("analysisReport");
|
|
|
+ Map<String, Object> analysisReport = (Map<String, Object>) taskInfo.get("report");
|
|
|
if (analysisReport != null) {
|
|
|
Boolean isEnable = parseEnableValue(analysisReport.get("enable"), "分析报告");
|
|
|
String type = (String) analysisReport.get("name");
|