puzhibing
2023-05-25 380c0e958fbc3f2b42a3e38ae5dc9af3254b8f5c
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.agentdriving.user.modular.system.service;
 
import com.agentdriving.user.modular.system.model.Driver;
import com.baomidou.mybatisplus.service.IService;
import com.agentdriving.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;
}