记得上下班打卡 | git大法好,push需谨慎

Commit 4bda0738 authored by zhengfuxin's avatar zhengfuxin

type为5的,取消 任务遍历

parent d313fc1c
......@@ -45,7 +45,7 @@
<select id="selectUserList" parameterType="java.util.Map" resultType="com.liquidnet.service.smile.entity.SmileUser">
select * from smile_user
<where>
del_tag = 0 AND type != 0 AND type != 3 AND type != 4
del_tag = 0 AND type != 0 AND type != 3 AND type != 4 and type!=5
<if test="phone!='' and phone !=null">
AND phone Like concat('%',#{phone},'%')
</if>
......@@ -67,14 +67,14 @@
<select id="pageUser" parameterType="int" resultType="com.liquidnet.service.smile.entity.SmileUser">
select * from smile_user
<where>
del_tag = 0 AND type != 0 AND type != 3 AND type != 4
del_tag = 0 AND type != 0 AND type != 3 AND type != 4 and type!=5
</where>
limit #{offest},#{size}
</select>
<select id="getCount" resultType="int">
select count(1) from smile_user
<where>
del_tag = 0 AND type != 0 AND type != 3 AND type != 4
del_tag = 0 AND type != 0 AND type != 3 AND type != 4 and type!=5
</where>
</select>
......
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