|
@@ -177,6 +177,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="businessId != null and businessId != ''">
|
|
|
AND g.business_id = #{businessId}
|
|
|
</if>
|
|
|
+ <if test="startTime != null and startTime != ''">
|
|
|
+ AND u.create_time > #{startTime}
|
|
|
+ </if>
|
|
|
+ <if test="endTime != null and endTime != ''">
|
|
|
+ AND u.create_time < #{endTime}
|
|
|
+ </if>
|
|
|
<if test="nickname != null and nickname != ''" >
|
|
|
AND u.nickname like concat('%', #{nickname}, '%')
|
|
|
</if>
|