|
|
@@ -2435,6 +2435,15 @@ inner join(
|
|
|
</if>
|
|
|
where a.`type` =1 and a.status =0 and a.share_type in (0,1,4)
|
|
|
and a.aid = #{aid}
|
|
|
+ <if test="name != null">
|
|
|
+ and a.nickname like concat('%',#{name},'%')
|
|
|
+ </if>
|
|
|
+ <if test="shareType !=null">
|
|
|
+ and a.share_type = #{shareType}
|
|
|
+ </if>
|
|
|
+ <if test="level !=null">
|
|
|
+ and a.level = #{level}
|
|
|
+ </if>
|
|
|
<if test="page_sql != null">
|
|
|
${page_sql}
|
|
|
</if>
|
|
|
@@ -2450,5 +2459,14 @@ inner join(
|
|
|
</if>
|
|
|
where a.`type` =1 and a.status =0 and a.share_type in (0,1,4)
|
|
|
and a.aid = #{aid}
|
|
|
+ <if test="name != null">
|
|
|
+ and a.nickname like concat('%',#{name},'%')
|
|
|
+ </if>
|
|
|
+ <if test="shareType !=null">
|
|
|
+ and a.share_type = #{shareType}
|
|
|
+ </if>
|
|
|
+ <if test="level !=null">
|
|
|
+ and a.level = #{level}
|
|
|
+ </if>
|
|
|
</select>
|
|
|
</mapper>
|