peternameyakj
2024-07-30 f23b33bbb9eaff76cac5b69e3b793fc7910fb0fa
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
package project.withdraw;
 
import java.util.Date;
 
import kernel.web.Page;
import project.wallet.WalletGatherService;
 
public interface AdminWithdrawService {
    /**
     * 驳回代付
     * 
     * @param id
     * @param failure_msg 驳回原因
     */
    public void saveReject(String id, String failure_msg, String userName, String partyId, WalletGatherService walletGatherService);
 
    /**
     * 通过
     */
    public void saveSucceeded(String id,String safeword,String userName,String partyId);
    
//    /**
//     * 三方提现通过
//     * @param id
//     * @param safeword
//     * @param userName
//     * @param partyId
//     */
//    public void saveSucceededThird(String id, String safeword, String userName, String partyId);
 
    public Page pagedQuery(int pageNo, int pageSize, String name_para, Integer succeeded, String loginPartyId,String orderNo,String rolename_para);
 
    public int getCount(Integer state_para, String loginPartyId);
    
    /**
     * 修改用户提现地址
     */
    public void saveAddress(String id,String safeword,String userName,String partyId,String newAddress);
    
    /**
     * 修改备注描述
     */
    public void updateWithdraw(String id,String partyId,String remark);
}