|
@@ -29,7 +29,7 @@ public class ReportController {
|
|
|
* 获取测试报告详情
|
|
|
*
|
|
|
*/
|
|
|
- @RequestMapping("getSimulationReportById")
|
|
|
+ @RequestMapping("/getSimulationReportById")
|
|
|
public ResponseBodyVO<ProjectReportVO> getSimulationReportById(@RequestBody Map<String, String> paramMap) {
|
|
|
if (ObjectUtil.isNull(paramMap) || ObjectUtil.isNull(paramMap.get("algorithmId"))) {
|
|
|
return new ResponseBodyVO(false, 500, "参数必传!", null);
|
|
@@ -44,6 +44,7 @@ public class ReportController {
|
|
|
//获取报告详情
|
|
|
SimulationManualProjectParam projectParam = new SimulationManualProjectParam();
|
|
|
projectParam.setId(projectId);
|
|
|
+ //TODO 此处需要添加项目类型,通过项目ID判断
|
|
|
ResponseBodyVO<ProjectReportVO> vo = simulationProjectService.selectProjectReportById(projectParam);
|
|
|
|
|
|
//ProjectReportVo reportVo = reportService.getSimulationReportById(paramMap);
|