zj
2024-06-03 5668aa7dc743d930b4b09dce1e7ccbba371e93cf
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
package org.example.ssmico.demos.web.service;
 
import org.example.ssmico.demos.web.vo.WithdrawDepositVo;
import org.example.ssmico.demos.web.dto.ResultDto;
import org.example.ssmico.demos.web.util.ResultObject;
 
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SignatureException;
import java.security.spec.InvalidKeySpecException;
import java.util.List;
 
public interface UserPayService {
    ResultDto getAddressList(String s) throws NoSuchAlgorithmException, InvalidKeySpecException, SignatureException, InvalidKeyException;
 
    ResultDto syncStatus(String s,String userId,String address);
 
    ResultObject getBindingState(String s,String address);
 
    ResultObject withdrawDeposit(WithdrawDepositVo vo);
 
    ResultObject getUserRechargeAddress(String f,String userId,String lang) throws Exception;
 
    List<String> getAddressUnusedList(String coin);
}