| | |
| | | package com.xcong.excoin.modules.member.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.xcong.excoin.modules.member.entity.MemberEntity; |
| | | import com.xcong.excoin.modules.test.entity.TestUserEntity; |
| | | |
| | | /** |
| | | * @author wzy |
| | | */ |
| | | public interface MemberService extends IService<MemberEntity> { |
| | | } |
| | | 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.MemberSubmitCoinApplyDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberUpdatePwdDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberUpdateTradePwdDto;
|
| | | import com.xcong.excoin.modules.member.parameter.dto.MemberUpdateTradersPwdTimeDto;
|
| | | import com.xcong.excoin.modules.member.parameter.vo.NeedMoneyMemberVo;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | /**
|
| | | * @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);
|
| | |
|
| | | public Result memberAuthenticationInfo();
|
| | |
|
| | | public Result memberPersonCenterInfo();
|
| | |
|
| | | public Result memberCoinInfoList();
|
| | |
|
| | | public Result memberAvivableCoinInfo(String symbol);
|
| | |
|
| | | public NeedMoneyMemberVo selectFriendRelationUserByMemberId(Long memberId);
|
| | |
|
| | | public List<NeedMoneyMemberVo> selectAllNeedMoneyMember(List<String> list);
|
| | |
|
| | | public MemberEntity selectMemberInfoByInviteId(String inviteId);
|
| | |
|
| | | public Result memberUpdateTradersPwdTime(@Valid MemberUpdateTradersPwdTimeDto memberUpdateTradersPwdTimeDto);
|
| | |
|
| | | public Result memberSubmitCoinApply(@Valid MemberSubmitCoinApplyDto memberSubmitCoinApplyDto);
|
| | |
|
| | | public Result getMemberAccountInfo(String account,int type);
|
| | |
|
| | | public Result getAppVersionInfo();
|
| | |
|
| | | public Result getPcVersionInfo();
|
| | |
|
| | |
|
| | | }
|