zj
2025-01-06 0e7b38c2b3af72ea2a7f8a2fcbaad4d78e2c1977
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
package com.gear.customer.swx.biz;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.gear.common.exception.CustomerException;
import com.gear.customer.swx.vo.request.*;
import com.gear.customer.swx.vo.response.SwxUserInfoVo;
import com.gear.swx.domain.SwxLoanRecord;
import com.gear.swx.domain.SwxNft;
import com.gear.swx.domain.SwxRechargeRecord;
import com.gear.swx.domain.SwxWithdrawalRecord;
 
import java.util.List;
 
public interface SwxBizUser {
 
    String identification(String userId,SwxUserIdentificationVo swxUserIdentificationVo)throws CustomerException;
 
    SwxUserInfoVo getUserInfo(String userId)throws CustomerException;
 
    String recharge(String userId, SwxUserRechargeVo vo)throws CustomerException;
 
    String withdrawal(String userId, SwxUserWithdrawalVo vo)throws CustomerException;
 
    IPage<SwxWithdrawalRecord> listWithdrwal(String userId, Integer pageNo, Integer pageSize)throws CustomerException;
 
    IPage<SwxRechargeRecord> listRecharge(String userId,Integer pageNo,Integer pageSize)throws CustomerException;
 
    List<SwxNft> listNft(String userId)throws CustomerException;
 
    String buyNft(String userId, SwxUserBuyNftVo swxUserBuyNftVo)throws CustomerException;
 
    String loan(String userId, SwxUserLoanVo swxUserLoanVo)throws CustomerException;
 
    IPage<SwxLoanRecord> listLoanRecord(String userId,Integer pageNo,Integer pageSize)throws CustomerException;
 
    String repassword(String userId,SwxUserRegisterVo vo);
}