This commit is contained in:
parent
a15c1398d0
commit
45b9fc59fc
|
|
@ -213,6 +213,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
AND cd.pro_code = #{proCode}
|
AND cd.pro_code = #{proCode}
|
||||||
</if>
|
</if>
|
||||||
</where>
|
</where>
|
||||||
|
GROUP BY tl.tool_code
|
||||||
|
|
||||||
UNION ALL
|
UNION ALL
|
||||||
|
|
||||||
|
|
@ -241,6 +242,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="typeModelName!=null and typeModelName!=''">
|
<if test="typeModelName!=null and typeModelName!=''">
|
||||||
AND tt.type_name like concat('%',#{typeModelName},'%')
|
AND tt.type_name like concat('%',#{typeModelName},'%')
|
||||||
</if>
|
</if>
|
||||||
|
<if test="devCode!=null and devCode!=''">
|
||||||
|
AND tl.tool_code like concat('%',#{devCode},'%')
|
||||||
|
</if>
|
||||||
<if test="companyId!=null">
|
<if test="companyId!=null">
|
||||||
AND tl.company_id = #{companyId}
|
AND tl.company_id = #{companyId}
|
||||||
</if>
|
</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue