Jelajahi Sumber

返回结果

Gaokun Wang 7 bulan lalu
induk
melakukan
fb6f56eab0

+ 1 - 1
als-modules/agile-assurance/src/main/java/org/eco/als/controller/AlgorithmController.java

@@ -66,7 +66,7 @@ public class AlgorithmController {
     @Log(title = "执行故障诊断算法", businessType = BusinessType.EXECUTE)
     @PostMapping("/execute/fault")
     public CommonResult<String> executeFault(@Validated @RequestBody AlgorithmBo algorithmBo) {
-        return StrUtil.isBlank(algorithmService.executeFault(algorithmBo)) ? CommonResult.fail() : CommonResult.success();
+        return StrUtil.isBlank(algorithmService.executeFault(algorithmBo)) ? CommonResult.fail() : CommonResult.success(algorithmService.executeFault(algorithmBo), "");
     }
 
     /**