xiaoyong931011
2020-05-31 56a21dfdd15edaef6b0837dd59b2166801b6d124
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
61
62
63
64
package com.xcong.excoin.modules.member.service;
 
import javax.validation.Valid;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.common.system.dto.RegisterDto;
import com.xcong.excoin.modules.member.entity.MemberEntity;
import com.xcong.excoin.modules.member.parameter.dto.MemberAddCoinAddressDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberAuthenticationDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberBindEmailDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberBindPhoneDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberDelCoinAddressDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberDelPaymethodDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberForgetPwdDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberPaymethodDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberUpdatePwdDto;
import com.xcong.excoin.modules.member.parameter.dto.MemberUpdateTradePwdDto;
 
/**
 * @author wzy
 */
public interface MemberService extends IService<MemberEntity> {
 
    public Result register(RegisterDto registerDto);
 
    public Result getMemberInfo();
 
    public Result memberAuthentication(@Valid MemberAuthenticationDto memberAuthenticationDto);
 
    public Result memberForgetPwd(@Valid MemberForgetPwdDto memberForgetPwdDto);
 
    public Result memberUpdatePwd(@Valid MemberUpdatePwdDto memberUpdatePwdDto);
 
    public Result memberUpdateTradePwd(@Valid MemberUpdateTradePwdDto memberUpdateTradePwdDto);
 
    public Result memberLogout();
 
    public Result memberTradersPwd(@Valid MemberForgetPwdDto memberForgetPwdDto);
 
    public Result memberAddPaymethod(@Valid MemberPaymethodDto memberPaymethodDto);
 
    public Result memberDelPaymethod(@Valid MemberDelPaymethodDto memberDelPaymethodDto);
 
    public Result memberPaymethodDetail(long id);
 
    public Result memberPaymethodDetailList();
 
    public Result memberBindPhone(@Valid MemberBindPhoneDto memberBindPhoneDto);
 
    public Result memberBindEmail(@Valid MemberBindEmailDto memberBindEmailDto);
 
    public Result memberCoinAddressCount();
 
    public Result memberCoinAddressList(String symbol);
 
    public Result memberAddCoinAddress(@Valid MemberAddCoinAddressDto memberAddCoinAddressDto);
 
    public Result memberSendCodeWay();
 
    public Result memberDelCoinAddress(@Valid MemberDelCoinAddressDto memberDelCoinAddressDto);
 
 
}