新增机构过滤

This commit is contained in:
阿沐 2024-02-24 12:32:33 +08:00
parent 058d7045ec
commit 29103f3000

View File

@ -12,6 +12,12 @@
<if test="mobile != null and mobile.trim() != ''">
and t1.mobile = #{mobile}
</if>
<if test="orgList != null">
and t1.org_id in
<foreach collection="orgList" item="orgId" open="(" separator="," close=")">
#{orgId}
</foreach>
</if>
<if test="gender != null">
and t1.gender = #{gender}
</if>