From f755301cc1bc3899bc100afdd387d7b0dc8863bf Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 25 Oct 2022 10:01:53 +0800
Subject: [PATCH] 20221021

---
 src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java b/src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java
index d233533..3254cb9 100644
--- a/src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java
+++ b/src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java
@@ -1,6 +1,11 @@
 package cc.mrbird.febs.dapp.mapper;
 
+import cc.mrbird.febs.common.entity.FebsResponse;
+import cc.mrbird.febs.dapp.dto.ApiMyTeammateInfoDto;
+import cc.mrbird.febs.dapp.dto.TeamListDto;
 import cc.mrbird.febs.dapp.entity.DappMemberEntity;
+import cc.mrbird.febs.dapp.vo.ApiMyTeammateInfoListVo;
+import cc.mrbird.febs.dapp.vo.TeamListVo;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
@@ -28,4 +33,36 @@
     List<DappMemberEntity> selectParentsList(@Param("list") List<String> inviteIds, @Param("size") Integer size);
 
     BigDecimal selectAllBalance(@Param("accountType") String accountType);
+
+    List<DappMemberEntity> selectMemberByAccountType(@Param("accountType") String accountType);
+
+    List<DappMemberEntity> selectChildMemberDirectOrNot(@Param("inviteId") String inviteId, @Param("type") Integer type);
+
+    BigDecimal selectChildHoldAmount(@Param("inviteId") String inviteId);
+
+    IPage<TeamListVo> selectTeamListInPage(@Param("record") TeamListDto teamListDto, Page<TeamListDto> page);
+
+    List<DappMemberEntity> selectMakerAddress();
+
+    DappMemberEntity selectMemberInfoByUsername(@Param("username")String account);
+
+    DappMemberEntity selectMemberInfoByUsernameAndPassword(@Param("username") String account,@Param("password")  String md5Pwd);
+
+    DappMemberEntity selectMemberInfoByTouristMark(@Param("touristMark")String touristMark);
+
+    DappMemberEntity selectRelationShipByInviteIdOutAndMemberId(@Param("id")Long id, @Param("inviteId")String inviteId);
+
+    IPage<DappMemberEntity> selectMemberListInPage(@Param("record")DappMemberEntity member, Page<DappMemberEntity> page);
+
+    void updateIsOnHook();
+
+    IPage<ApiMyTeammateInfoListVo> selectMyTeammateInfoInPage(@Param("record")ApiMyTeammateInfoDto apiMyTeammateInfoDto, Page<ApiMyTeammateInfoListVo> page);
+
+    void updateIdentity();
+
+    List<DappMemberEntity> selectTotalAmountByRefererId(@Param("inviteId")String inviteId);
+
+    void updateIdentityByMemberId(@Param("identity")String code, @Param("id")Long memberEntityId);
+
+    List<DappMemberEntity> selectTotalAmountByRefererIdAndIdentity(@Param("inviteId")String inviteId, @Param("identity")String identity);
 }

--
Gitblit v1.9.1