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
| package com.stylefeng.guns.modular.call.server;
|
| import com.baomidou.mybatisplus.service.IService;
| import com.stylefeng.guns.modular.call.model.OrderCall;
| import com.stylefeng.guns.modular.system.util.ResultUtil;
|
| public interface IOrderCallService extends IService<OrderCall> {
|
|
| /**
| * 支付感谢费
| * @param uid
| * @param orderId
| * @param money
| * @param payType
| * @return
| * @throws Exception
| */
| ResultUtil payThankYouFee(Integer uid, Integer orderId, Double money, Integer payType, Integer type) throws Exception;
|
|
| /**
| * 感谢费支付回调处理
| * @param orderId
| * @param order_id
| * @throws Exception
| */
| void payThankYouFeeCallback(Integer orderId, String order_id, Integer payType) throws Exception;
| }
|
|