|
@@ -99,10 +99,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
AND (SELECT count(1) FROM `user` u where u.user_id = up.user_id and u.realname like concat('%', #{realname}, '%') )> 0
|
|
|
</if>
|
|
|
<if test="searchStartTime != null and searchStartTime !='' ">
|
|
|
- AND up.update_time >=#{searchStartTime}
|
|
|
+ AND up.create_time >=#{searchStartTime}
|
|
|
</if>
|
|
|
<if test="searchEndTime != null and searchEndTime !='' ">
|
|
|
- AND {searchEndTime} >= up.update_time
|
|
|
+ AND #{searchEndTime} >= up.create_time
|
|
|
</if>
|
|
|
<!-- 数据范围过滤 -->
|
|
|
${params.dataScope}
|