This commit is contained in:
jiask 2026-02-06 10:21:36 +08:00
commit a391018944
1 changed files with 4 additions and 3 deletions

View File

@ -272,9 +272,7 @@
<if test="maType != null and maType != ''">
and mat2.`NAME` like concat ('%',#{maType},'%')
</if>
<if test="isCount != null and isCount != ''">
and rs.isCount = #{isCount}
</if>
</where>
GROUP BY rs.typeId
) a WHERE
@ -287,6 +285,9 @@
mt.`LEVEL` = 4
AND mt.IS_ACTIVE = 1
)
<if test="isCount != null and isCount != ''">
and a.isCount = #{isCount}
</if>
</select>