puzhibing
2023-02-15 2811bab657aab4145b65a45a824fb63e93b58e30
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
package com.stylefeng.guns.modular.system.service;
 
import com.stylefeng.guns.modular.system.util.ResultUtil;
import com.stylefeng.guns.modular.system.warpper.BaseWarpper;
 
public interface IOrderService {
 
 
    /**
     * 获取预计行驶时间
     * @param slon  起点经度
     * @param slat  起点纬度
     * @param elon  终点经度
     * @param elat  终点纬度
     * @return
     * @throws Exception
     */
    ResultUtil<BaseWarpper> queryExpectedTime(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) throws Exception;
}