|
@@ -1084,6 +1084,10 @@ public interface CrmCustomerMapper extends BaseMapper<CrmCustomer> {
|
|
|
"<if test = 'maps.endTime != null and maps.endTime != \"\" '> " +
|
|
"<if test = 'maps.endTime != null and maps.endTime != \"\" '> " +
|
|
|
"and date_format(c.create_time,'%y%m%d') <= date_format(#{maps.endTime},'%y%m%d') " +
|
|
"and date_format(c.create_time,'%y%m%d') <= date_format(#{maps.endTime},'%y%m%d') " +
|
|
|
"</if>" +
|
|
"</if>" +
|
|
|
|
|
+ "<if test = 'maps.visitStatus != null and maps.visitStatus !=\"\"'> " +
|
|
|
|
|
+ "and c.visit_status IN " +
|
|
|
|
|
+ "<foreach collection=\"maps.visitStatus.split(',')\" item='item' index='index' open='(' separator=',' close=')'> #{item} </foreach>" +
|
|
|
|
|
+ "</if>" +
|
|
|
" order by c.customer_id desc "+
|
|
" order by c.customer_id desc "+
|
|
|
"</script>"})
|
|
"</script>"})
|
|
|
List<CrmCustomerAllListQueryVO> selectCrmCustomerAllListQuery(@Param("maps") CrmCustomerAllListQueryParam param);
|
|
List<CrmCustomerAllListQueryVO> selectCrmCustomerAllListQuery(@Param("maps") CrmCustomerAllListQueryParam param);
|