zhibing.pu
2024-08-27 8f39e870ca9519d8a8190c038d15a030149de98e
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
41
package com.stylefeng.guns.modular.system.service;
 
import com.stylefeng.guns.modular.system.util.ResultUtil;
import com.stylefeng.guns.modular.system.warpper.BaseWarpper;
 
import java.util.Map;
 
public interface IOrderService {
 
 
    /**
     * 获取预计行驶时间
     * @param slon  起点经度
     * @param slat  起点纬度
     * @param elon  终点经度
     * @param elat  终点纬度
     * @return
     * @throws Exception
     */
    ResultUtil<BaseWarpper> queryExpectedTime(Integer uid, Double slon, Double slat, Double elon, Double elat) throws Exception;
 
 
    /**
     * APP调用小程序完成微信支付
     * @param orderId
     * @param orderType
     * @param type
     * @return
     * @throws Exception
     */
    ResultUtil weChatPay(Integer orderId, Integer orderType, Integer type, Integer userType, Integer uid, String content, Integer language) throws Exception;
 
 
    /**
     * 获取订单车牌信息
     * @param orderType
     * @param orderId
     * @return
     */
    Map<String, Object> queryOrderLicensePlate(Integer orderType, Integer orderId);
}