|
@@ -165,6 +165,9 @@
|
|
|
<if test="delUserId != null and delUserId != ''">
|
|
|
and preparation.del_user_id not like concat(concat('%',#{delUserId}),'%')
|
|
|
</if>
|
|
|
+ <if test="receiveVerifyLeader != null and receiveVerifyLeader != ''">
|
|
|
+ and preparation.receive_verify_leader = #{receiveVerifyLeader}
|
|
|
+ </if>
|
|
|
</sql>
|
|
|
<select id="selectList" parameterType="com.platform.dao.dto.preparation.PreparationDTO"
|
|
|
resultType="com.platform.dao.vo.query.preparation.PreparationVO">
|
|
@@ -208,6 +211,9 @@
|
|
|
or user_id = #{tempUserId}
|
|
|
or apply_verify_leader = #{tempUserId})
|
|
|
</if>
|
|
|
+ <if test="receiveVerifyLeader != null and receiveVerifyLeader != ''">
|
|
|
+ and receive_verify_leader = #{receiveVerifyLeader}
|
|
|
+ </if>
|
|
|
<if test="delUserId != null and delUserId != ''">
|
|
|
and del_user_id not like concat(concat('%',#{delUserId}),'%')
|
|
|
</if>
|