|
@@ -23,7 +23,8 @@
|
|
|
convenient_time,
|
|
|
communication_content,
|
|
|
user_feedback,
|
|
|
- store
|
|
|
+ store,
|
|
|
+ p_code
|
|
|
FROM
|
|
|
customer_info_feedback
|
|
|
where 1=1
|
|
@@ -36,6 +37,12 @@
|
|
|
<if test="end_fb_date != null and end_fb_date !=''">
|
|
|
and fb_Date < #{end_fb_date}
|
|
|
</if>
|
|
|
+ <if test="start_entry_date != null and start_entry_date !=''">
|
|
|
+ and entry_date >= #{start_entry_date}
|
|
|
+ </if>
|
|
|
+ <if test="end_entry_date != null and end_entry_date !=''">
|
|
|
+ and entry_date < #{end_entry_date}
|
|
|
+ </if>
|
|
|
<if test="source_channel != null ">
|
|
|
and source_channel in
|
|
|
<foreach collection="source_channel" item="item" index="index" open="(" separator="," close=")">
|