|
|
@@ -31,6 +31,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="query.projectName != null and query.projectName != ''">
|
|
|
AND p.project_name LIKE CONCAT('%', #{query.projectName}, '%')
|
|
|
</if>
|
|
|
+ <if test="query.gender != null and query.gender != ''">
|
|
|
+ AND p.gender = #{query.gender}
|
|
|
+ </if>
|
|
|
+ <if test="query.groups != null and query.groups != ''">
|
|
|
+ AND FIND_IN_SET(#{query.groups}, p.groups)
|
|
|
+ </if>
|
|
|
<!-- 数据权限 -->
|
|
|
${query.params.dataScope}
|
|
|
</where>
|