Browse Source

sql调整

wangtianteng 1 year ago
parent
commit
352fd88875

+ 3 - 1
ruoyi-system/src/main/resources/mapper/system/platform/UserInfoMapper.xml

@@ -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