| | |
| | | <mapper namespace="cc.mrbird.febs.mall.mapper.MallShopMapper"> |
| | | |
| | | <select id="selectShopListInPage" resultType="cc.mrbird.febs.mall.entity.MallShop"> |
| | | select * from mall_shop |
| | | select |
| | | a.*, |
| | | lat_lng_distance(#{record.latitude}, #{record.longitude}, a.latitude, a.longitude) distance |
| | | from mall_shop a |
| | | <where> |
| | | 1=1 |
| | | <if test="record != null"> |
| | |
| | | </if> |
| | | </if> |
| | | </where> |
| | | order by id desc |
| | | <if test="record.longitude != null and record.latitude != null"> |
| | | order by lat_lng_distance(#{record.latitude}, #{record.longitude}, a.latitude, a.longitude) desc |
| | | </if> |
| | | <if test="record.longitude == null or record.latitude == null"> |
| | | order by id desc |
| | | </if> |
| | | </select> |
| | | </mapper> |