zj
2025-07-14 5ab1a38d6fb2532b26311a4e2f9fd5120227a303
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
package project.withdraw;
 
import project.wallet.WalletGatherService;
 
import java.util.List;
 
public interface WithdrawService {
 
    /**
     * 代付,通过web申请一个代付订单
     */
    public void saveApply(Withdraw entity, String channel, String method_id, String googleCode, WalletGatherService walletGatherService);
 
    /**
     * 查找订单 order_no 订单号
     * 
     * @return
     */
    public Withdraw findByOrderNo(String order_no);
 
    /**
     * 后台管理员通过提现
     */
 
    public boolean saveSucceeded(Withdraw withdraw);
 
    /**
     * 
     * @param 驳回申请
     */
    public boolean saveReject(Withdraw withdraw);
 
    /**
     * 当日提现订单
     */
    public List<Withdraw> findAllByDate(String partyId);
 
    /**
     * 获取其他通道的手续费
     * 
     * @param volume 提现数量
     * @return
     */
    public double getOtherChannelWithdrawFee(double volume);
 
    /**
     * 当周已使用额度
     * 
     * @param partyId
     * @param withdrawVolumn
     * @return
     */
    public double weekWithdraw(String partyId);
 
    public List<Withdraw> findAllByStateAndPartyId(Integer state, String partyId);
 
}