style(测试跟踪): 新增方法注释规范

This commit is contained in:
fit2-zhao 2020-10-19 17:55:50 +08:00
parent fdcb58c6e3
commit f64e4e7b32
1 changed files with 10 additions and 0 deletions

View File

@ -20,8 +20,18 @@ public interface ExtTestCaseMapper {
TestCase getMaxNumByProjectId(@Param("projectId") String projectId);
/**
* 获取不在测试计划中的用例
* @param request
* @return
*/
List<TestCase> getTestCaseByNotInPlan(@Param("request") QueryTestCaseRequest request);
/**
* 获取不在评审范围中的用例
* @param request
* @return
*/
List<TestCase> getTestCaseByNotInReview(@Param("request") QueryTestCaseRequest request);
/**