1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| package com.dsh.other.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.dsh.other.entity.Store;
| import com.dsh.other.model.BaseVo;
|
| import java.util.List;
|
|
| /**
| * <p>
| * 门店信息 服务类
| * </p>
| *
| * @author jqs
| * @since 2023-06-14
| */
| 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;
|
| }
|
|