fix(测试计划): 关联接口测试用例时,根据id搜索测试用例不生效
--bug=1007388 --user=lyh 【github#6953】测试计划中,关联接口测试用例时,根据id搜索测试用例不生效 https://www.tapd.cn/55049933/s/1058252
This commit is contained in:
parent
d4abc0fdc3
commit
36b99467e5
|
@ -74,7 +74,10 @@
|
||||||
</foreach>
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
<if test="request.name != null and request.name!=''">
|
<if test="request.name != null and request.name!=''">
|
||||||
and (c.name like CONCAT('%', #{request.name},'%') or c.tags like CONCAT('%', #{request.name},'%'))
|
and (c.name like CONCAT('%', #{request.name},'%')
|
||||||
|
or c.tags like CONCAT('%', #{request.name},'%')
|
||||||
|
or c.num like CONCAT('%', #{request.name},'%')
|
||||||
|
)
|
||||||
</if>
|
</if>
|
||||||
<if test="request.moduleIds != null and request.moduleIds.size() > 0">
|
<if test="request.moduleIds != null and request.moduleIds.size() > 0">
|
||||||
and a.module_id in
|
and a.module_id in
|
||||||
|
|
Loading…
Reference in New Issue