|
|
@@ -380,6 +380,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="projectId != null">
|
|
|
AND ucu.project_id = #{projectId}
|
|
|
</if>
|
|
|
+ <if test="source != null and source != ''">
|
|
|
+ and fs_user.source = #{source}
|
|
|
+ </if>
|
|
|
+ <if test="status != null and status != ''">
|
|
|
+ and fs_user.status = #{status}
|
|
|
+ </if>
|
|
|
+ <if test="isBuy != null and isBuy != ''">
|
|
|
+ and fs_user.is_buy = #{isBuy}
|
|
|
+ </if>
|
|
|
</where>
|
|
|
ORDER BY fs_user.create_time DESC
|
|
|
</select>
|