admin
2020-03-19 0d91bad397c1a1b41bc77d9cd9f7555ed78f7f1a
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.yeshi.fanli.service.inter.order;
 
import com.yeshi.fanli.exception.money.OrderMoneySettleException;
 
/**
 * 订单资金结算服务
 * 
 * @author Administrator
 *
 */
public interface OrderMoneySettleService {
 
    /**
     * 邀请赚结算
     * 
     * @param uid
     */
    public void inviteSettleTB(Long uid) throws OrderMoneySettleException;
 
    public void inviteSettleJD(Long uid) throws OrderMoneySettleException;
 
    public void inviteSettlePDD(Long uid) throws OrderMoneySettleException;
 
    /**
     * 分享赚结算
     * 
     * @param uid
     */
    public void shareSettleTB(Long uid) throws OrderMoneySettleException;
 
    public void shareSettleJD(Long uid) throws OrderMoneySettleException;
 
    public void shareSettlePDD(Long uid) throws OrderMoneySettleException;
 
    /**
     * 自购结算
     * 
     * @param orderId
     * @param sourceType
     */
    public void ziGouSettle(String orderId, int sourceType, String taskKey) throws OrderMoneySettleException;
 
    /**
     * 邀请补贴结算
     * @param uid
     * @param taskKey
     * @throws OrderMoneySettleException
     */
    public void inviteSubsidySettle(Long uid, String taskKey) throws OrderMoneySettleException;
 
    /**
     * 团队奖励到账
     * @Title: orderTeamRewardSettle
     * @Description: 
     * @param uid 
     * void 返回类型
     * @throws
     */
    public void orderTeamRewardSettle(Long uid) throws OrderMoneySettleException;
}