|
|
@@ -193,6 +193,9 @@
|
|
|
<if test='user.status !=null and user.status!="" '>
|
|
|
and su.status = #{user.status}
|
|
|
</if>
|
|
|
+ <if test='user.examine != 0'>
|
|
|
+ and su.status not in (0,1)
|
|
|
+ </if>
|
|
|
<if test='user.name !=null and user.name!="" '>
|
|
|
and su.name like concat('%',#{user.name},'%')
|
|
|
</if>
|
|
|
@@ -218,6 +221,7 @@
|
|
|
and sd.management_source is null
|
|
|
</if>
|
|
|
</if>
|
|
|
+ order by su.create_time desc
|
|
|
</select>
|
|
|
|
|
|
<select id="findAllUserList" resultType="com.ydtech.modules.admin.model.vo.SysUserBaseVO">
|
|
|
@@ -306,6 +310,9 @@
|
|
|
<if test='user.status !=null and user.status!="" '>
|
|
|
and su.status = #{user.status}
|
|
|
</if>
|
|
|
+ <if test='user.examine != 0'>
|
|
|
+ and su.status not in (0,1)
|
|
|
+ </if>
|
|
|
<if test='user.name !=null and user.name!="" '>
|
|
|
and su.name like concat('%',#{user.name},'%')
|
|
|
</if>
|
|
|
@@ -329,6 +336,7 @@
|
|
|
</if>
|
|
|
and su.id NOT LIKE '%M%'
|
|
|
</if>
|
|
|
+ order by su.create_time desc
|
|
|
</select>
|
|
|
|
|
|
<select id="findBackUserList1" resultType="com.ydtech.modules.admin.model.vo.SysUserBaseVO">
|