1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.supersavedriving.user.modular.system.service;
|
| import com.baomidou.mybatisplus.service.IService;
| import com.supersavedriving.user.modular.system.model.Driver;
| import com.supersavedriving.user.modular.system.warpper.NearbyDriverWarpper;
|
| import java.util.List;
|
| /**
| * 司机
| * @author pzb
| * @Date 2023/2/8 18:52
| */
| public interface IDriverService extends IService<Driver> {
|
|
| /**
| * 获取5公里范围内的司机坐标
| * @return
| * @throws Exception
| */
| List<NearbyDriverWarpper> queryDriverPosition(String lon, String lat, Double scope) throws Exception;
| }
|
|