Commit ba1bac4d by zhiwj

bug

parent fcb6b0e3
......@@ -467,6 +467,12 @@
<if test="appCode != null ">
and app_code = #{appCode}
</if>
<if test="null != appCodeList and appCodeList.size > 0">
and app_code in
<foreach collection="appCodeList" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="smsContent != null and smsContent != '' ">
and ( sms_content like concat('%', #{smsContent}, '%') or receive_phone like concat('%', #{smsContent}, '%') )
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment