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
| 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;
|
|
| /**
| * 司机线下订单收款
| * @param driverId
| * @param money
| * @return
| * @throws Exception
| */
| ResultUtil driverQrCodePaymentCollection(Integer driverId, Double money, Integer payType) throws Exception;
| }
|
|