This commit is contained in:
mashuai 2025-11-19 14:06:09 +08:00
parent a15c1398d0
commit 45b9fc59fc
1 changed files with 4 additions and 0 deletions

View File

@ -213,6 +213,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
AND cd.pro_code = #{proCode}
</if>
</where>
GROUP BY tl.tool_code
UNION ALL
@ -241,6 +242,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="typeModelName!=null and typeModelName!=''">
AND tt.type_name like concat('%',#{typeModelName},'%')
</if>
<if test="devCode!=null and devCode!=''">
AND tl.tool_code like concat('%',#{devCode},'%')
</if>
<if test="companyId!=null">
AND tl.company_id = #{companyId}
</if>