|
@@ -223,8 +223,14 @@
|
|
|
<if test="emailTitle != null and emailTitle != ''">
|
|
|
and parse.email_title like concat('%',#{emailTitle},'%')
|
|
|
</if>
|
|
|
- <if test="emailId != null and emailId != ''">
|
|
|
- and parse.id=#{emailId}
|
|
|
+ <if test="emailId != null and emailId !=''">
|
|
|
+ and parse.id =#{emailId}
|
|
|
+ </if>
|
|
|
+ <if test="email != null and email !=''">
|
|
|
+ and parse.email like concat('%',#{email},'%')
|
|
|
+ </if>
|
|
|
+ <if test="channelName != null and channelName !=''">
|
|
|
+ and c.channel_name like concat('%',#{channelName},'%')
|
|
|
</if>
|
|
|
</select>
|
|
|
<select id="countNoStoreNav" resultType="java.lang.Integer" parameterType="java.lang.String">
|