fix:导出全部用例

This commit is contained in:
wenyann 2020-09-16 22:14:19 +08:00
parent ed5232f5d0
commit c0a9dc003d
2 changed files with 4 additions and 0 deletions

View File

@ -224,6 +224,9 @@
#{id}
</foreach>
</if>
<if test="request.projectId!=null">
and test_case.project_id=#{request.projectId}
</if>
</where>
<if test="request.orders != null and request.orders.size() > 0">
order by

View File

@ -12,4 +12,5 @@ import java.util.List;
public class TestCaseBatchRequest extends TestCaseWithBLOBs {
private List<String> ids;
private List<OrderRequest> orders;
private String projectId;
}