refactor(接口测试): 增加误删代码
This commit is contained in:
parent
904a2828ef
commit
f8a0bfe491
|
@ -544,4 +544,15 @@
|
||||||
#{v}
|
#{v}
|
||||||
</foreach>
|
</foreach>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<select id="selectByPlanCaseIds" resultType="io.metersphere.api.dto.plan.TestPlanApiCaseInfoDTO">
|
||||||
|
SELECT a.project_id, t.*
|
||||||
|
FROM test_plan_api_case t
|
||||||
|
INNER JOIN api_test_case a ON t.api_case_id = a.id
|
||||||
|
WHERE t.id in
|
||||||
|
<foreach collection="planCaseIds" item="id" separator="," open="(" close=")">
|
||||||
|
#{id}
|
||||||
|
</foreach>
|
||||||
|
ORDER BY t.order DESC
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
Loading…
Reference in New Issue