xiaoyong931011
2020-07-16 a3d192d43e4090011d941e412a5bb44d59a6a049
src/main/java/com/xcong/excoin/modules/member/service/IMemberService.java
@@ -1,5 +1,7 @@
package com.xcong.excoin.modules.member.service;
import java.util.List;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
@@ -8,6 +10,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.entity.AgentFriendRelationEntity;
import com.xcong.excoin.modules.member.entity.MemberCoinChargeEntity;
import com.xcong.excoin.modules.member.entity.MemberCoinWithdrawEntity;
import com.xcong.excoin.modules.member.entity.MemberEntity;
@@ -15,6 +18,7 @@
import com.xcong.excoin.modules.member.vo.MemberAuthenticationVo;
import com.xcong.excoin.modules.member.vo.MemberCoinChargeVo;
import com.xcong.excoin.modules.member.vo.MemberCoinWithdrawVo;
import com.xcong.excoin.modules.member.vo.MemberDataInfoVo;
import com.xcong.excoin.modules.member.vo.MemberQuickBuySaleVo;
import com.xcong.excoin.modules.member.vo.MemberQuickSaleVo;
@@ -49,4 +53,16 @@
   FebsResponse memberDetailConfirm(@Valid MemberDetailConfirmDto memberDetailConfirmDto);
   List<MemberCoinChargeEntity> selectMemberDataInfoById(long id);
   IPage<MemberDataInfoVo> findMemberDataInfoDtoListInPage(MemberEntity memberEntity, QueryRequest request);
   MemberEntity selectMemberByid(long id);
   FebsResponse memberDataInfoList(@NotNull(message = "{required}") long id);
   IPage<AgentFriendRelationEntity> findAgentInfoListInPage(AgentFriendRelationEntity agentFriendRelationEntity, QueryRequest request);
   FebsResponse addCoinConfirm(@Valid MemberEntity memberEntity);
}