add:测试计划关联测试报告编辑API

This commit is contained in:
pfl
2025-06-27 18:25:56 +08:00
parent 924f5a935f
commit c12be119a3
4 changed files with 73 additions and 10 deletions

View File

@@ -76,4 +76,14 @@ public class TestReportController extends BaseController {
return toAjax(testReportService.updateExecuteCaseReport(testReport));
}
/**
* 修改测试计划关联测试报告
* @param testReport
*/
@Log(title = "测试报告", businessType = BusinessType.UPDATE)
@PostMapping("/updateExecuteCaseReport")
public AjaxResult updateExecuteCaseReport(@RequestBody TestReport testReport) {
return toAjax(testReportService.updateExecuteCaseReport(testReport));
}
}