puzhibing
2023-07-12 aa43a92c7ec9053dbaef92fe5ccb3011b670442c
cloud-server-other/src/main/java/com/dsh/other/service/StoreService.java
@@ -2,6 +2,9 @@
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.other.entity.Store;
import com.dsh.other.model.BaseVo;
import java.util.List;
/**
@@ -14,4 +17,24 @@
 */
public interface StoreService extends IService<Store> {
    /**
     * 获取列表数据
     * @param provinceCode
     * @param cityCode
     * @return
     * @throws Exception
     */
    List<Store> queryStorsList(String provinceCode, String cityCode) throws Exception;
    /**
     * 获取门店列表
     * @param lon
     * @param lat
     * @return
     * @throws Exception
     */
    List<BaseVo> queryStoreLists(String lon, String lat) throws Exception;
}