package com.hai.dao; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; import java.util.Map; /** * mapper扩展类 */ public interface HighGasOilPriceMapperExt { @Select("" ) List> selectStoreListByOilNo(@Param("storeName") String storeName, @Param("regionId") Long regionId, @Param("oilNoName") String oilNoName); @Select({"SELECT store_key storeKey,ROUND((st_distance_sphere(point(longitude, latitude) , point(${longitude},${latitude}))/1000),2) as distance\n" + "FROM high_merchant_store where type = 1 and `status` = 1 ORDER BY distance asc LIMIT 1"}) Map recentGasStation(@Param("longitude") String longitude,@Param("latitude") String latitude); }