puzhibing
2023-06-12 d4f8078c2a062864dab885d6bd54fbe1195f85e2
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
package com.agentdriving.driver.modular.system.service;
 
import com.agentdriving.driver.modular.system.warpper.DriverPositionWarpper;
import com.agentdriving.driver.modular.system.warpper.OrderPositionWarpper;
 
import java.util.List;
 
public interface IOrderPositionService {
 
 
    /**
     * 存储最新订单坐标
     * @param driverPositionWarpper
     * @throws Exception
     */
    void saveOrderPosition(DriverPositionWarpper driverPositionWarpper) throws Exception;
 
 
    /**
     * 获取订单坐标
     * @param orderId
     * @param orderType
     * @return
     * @throws Exception
     */
    List<OrderPositionWarpper> queryPosition(Integer orderId, Integer orderType) throws Exception;
}