From 57c12d09f1478036f659a718c81a18f7875aeccb Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 26 May 2023 15:10:47 +0800
Subject: [PATCH] twoCoin项目修改

---
 src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 43 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..23e80d7 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,8 @@
 package cc.mrbird.febs.dapp.mapper;
 
 import cc.mrbird.febs.dapp.entity.DappMemberEntity;
+import cc.mrbird.febs.dapp.vo.AdminTeamInfoVo;
+import cc.mrbird.febs.dapp.vo.DappMemberInfoVo;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
@@ -28,4 +30,45 @@
     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, @Param("status") Integer status);
+
+    BigDecimal selectChildHoldAmount(@Param("inviteId") String inviteId);
+
+    List<DappMemberEntity> selectMakerAddress();
+
+    int updateMemberActive();
+
+    DappMemberEntity selectNewestDirectMember(@Param("inviteId") String inviteId);
+
+    List<DappMemberEntity> selectMemberListNeedProfit();
+
+    void updateMemberAccountType(@Param("accountType")String code, @Param("id")Long id);
+
+    void updateMemberActiveStatus(@Param("accountStatus")int i, @Param("id")Long id);
+
+    List<DappMemberEntity> selectMemberInfoByRefererId(@Param("refererId")String inviteId);
+
+    Integer selectCountByAccountTypeAndRefererId(@Param("accountType")String code, @Param("refererId")String inviteId);
+
+    IPage<AdminTeamInfoVo> findTeamInfoListInPage(Page<AdminTeamInfoVo> page, @Param("record")DappMemberEntity dappMemberEntity);
+
+    DappMemberInfoVo selectByMemberId(@Param("id")Long id);
+
+    List<DappMemberEntity> selectByInviteIds(@Param("list")List<String> referrerIdList);
+
+    /**
+     * 获取级别为Type,且直推中有type级别的用户信息
+     * @param type
+     * @return
+     */
+    List<DappMemberEntity> selectMemberByAccountTypeAnd(@Param("accountType")String type);
+
+    List<DappMemberEntity> selectChildAgentListByAccountType(@Param("inviteId") String inviteId, @Param("accountType")String accountType);
+
+    BigDecimal selectAllAchieveByInviteId(@Param("inviteId")String inviteId);
+
+    List<DappMemberEntity> selectMemberByNotAccountType(@Param("accountType")String type);
 }

--
Gitblit v1.9.1