@@ -23,7 +23,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
RIGHT JOIN (
SELECT b.user_id, MAX(b.create_time) AS max_create_time, b.latitude, b.longitude,b.province,b.city,b.district
FROM t_user_address b
- WHERE b.province = #{param}
+ <if test="param != null and param != ''">
+ WHERE b.province = #{param}
+ </if>
GROUP BY b.user_id
) c ON a.id = c.user_id
WHERE a.del_flag = 0