|
@@ -279,6 +279,9 @@ public interface CrmCustomerMapper extends BaseMapper<CrmCustomer>
|
|
|
"<if test = 'maps.customerLevel != null'> " +
|
|
|
"and c.customer_level =#{maps.customerLevel} " +
|
|
|
"</if>" +
|
|
|
+ "<if test = 'maps.companyUserNickName != null and maps.companyUserNickName !=\"\" '> " +
|
|
|
+ "and u.nick_name like CONCAT('%',#{maps.companyUserNickName},'%') " +
|
|
|
+ "</if>" +
|
|
|
" order by c.is_top desc,c.customer_id desc "+
|
|
|
"</script>"})
|
|
|
List<CrmLineCustomerListQueryVO> selectCrmLineCustomerListQuery(@Param("maps")CrmLineCustomerListQueryParam param);
|