测试报告接口前缀修改

This commit is contained in:
pfl
2025-04-27 13:52:06 +08:00
parent 75b83d2847
commit 2e5736d045

View File

@@ -21,7 +21,7 @@ import org.springframework.web.bind.annotation.RestController;
*/ */
@Slf4j @Slf4j
@RestController @RestController
@RequestMapping("/test/report") @RequestMapping("/test/testReport")
public class TestReportController extends BaseController { public class TestReportController extends BaseController {
@Autowired @Autowired
@@ -31,7 +31,7 @@ public class TestReportController extends BaseController {
* 查询测试计划关联测试报告列表 * 查询测试计划关联测试报告列表
* @return * @return
*/ */
@GetMapping("/list") @GetMapping("/reportList")
public TableDataInfo list(@RequestBody IDQO qo) { public TableDataInfo list(@RequestBody IDQO qo) {
startPage(); startPage();
List<TestReportVo> list = testReportService.selectTestReportList(qo.getId()); List<TestReportVo> list = testReportService.selectTestReportList(qo.getId());