xiaoyong931011
2021-06-17 4c902d9c20dd965d1ec832760809c622d1df9aac
src/main/java/com/xcong/excoin/modules/member/service/IMemberService.java
@@ -1,6 +1,8 @@
package com.xcong.excoin.modules.member.service;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutionException;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
@@ -10,6 +12,7 @@
import com.xcong.excoin.common.entity.FebsResponse;
import com.xcong.excoin.common.entity.QueryRequest;
import com.xcong.excoin.modules.member.dto.MemberDetailConfirmDto;
import com.xcong.excoin.modules.member.dto.MemberLimitDto;
import com.xcong.excoin.modules.member.entity.AgentFriendRelationEntity;
import com.xcong.excoin.modules.member.entity.MemberCoinChargeEntity;
import com.xcong.excoin.modules.member.entity.MemberCoinWithdrawEntity;
@@ -46,7 +49,7 @@
   IPage<MemberCoinWithdrawVo> findmemberWithdrawCoinListInPage(MemberCoinWithdrawEntity memberCoinWithdrawEntity, QueryRequest request);
   FebsResponse memberWithdrawCoinConfirm(@NotNull(message = "{required}") Long id);
   FebsResponse memberWithdrawCoinConfirm(@NotNull(message = "{required}") Long id) throws ExecutionException, InterruptedException;
   FebsResponse memberWithdrawCoinCancel(@NotNull(message = "{required}") Long id);
@@ -80,4 +83,25 @@
   IPage<MemberDataInfoVo> findMemberDataInfoAllAloneListInPage(MemberEntity memberEntity, QueryRequest request);
   IPage<MemberEntity> findMemberListTestInPage(MemberEntity member, QueryRequest request);
   IPage<MemberCoinWithdrawVo> findMemberWithdrawCoinTestListInPage(MemberCoinWithdrawEntity memberCoinWithdrawEntity,
         QueryRequest request);
   IPage<MemberCoinChargeVo> findMemberApplyCoinAloneTestInPage(MemberCoinChargeEntity memberCoinChargeEntity, QueryRequest request);
   IPage<MemberEntity> findMemberAloneTestInPage(MemberEntity member, QueryRequest request);
   IPage<MemberDataInfoVo> findMemberDataInfoAloneTestDtoListInPage(MemberEntity memberEntity, QueryRequest request);
   IPage<MemberDataInfoVo> findMemberDataInfoAllAloneTestListInPage(MemberEntity memberEntity, QueryRequest request);
   MemberInfoDetailVo selectMemberInfoDetailByInviteId(String inviteId);
   IPage<MemberEntity> memberDataInfoListSearchs(MemberEntity member, QueryRequest request);
    MemberLimitDto memberLimit();
    void setLimit(MemberLimitDto memberLimitDto);
}