xiaoyong931011
2023-08-10 18b681e553980b20bc9b5b3a113167f33b83a7b3
src/main/resources/mapper/dapp/DappMemberDao.xml
@@ -92,9 +92,9 @@
    <select id="selectMemberByAccountType" resultType="cc.mrbird.febs.dapp.entity.DappMemberEntity">
        select * from dapp_member
        <where>
            account_type = #{accountType}
        </where>
        where
            active_status = 1
            and account_type = #{accountType}
    </select>
    <select id="selectChildMemberDirectOrNot" resultType="cc.mrbird.febs.dapp.entity.DappMemberEntity">
@@ -165,6 +165,14 @@
        where referer_id = #{refererId}
    </select>
    <select id="selectAllMemberInfoByRefererId" resultType="cc.mrbird.febs.dapp.entity.DappMemberEntity">
        select
            *
        from dapp_member a
        where FIND_IN_SET(#{inviteId}, referer_ids)
    </select>
    <select id="selectCountByAccountTypeAndRefererId" resultType="java.lang.Integer">
        select count(id)
        from dapp_member
@@ -192,18 +200,10 @@
    <select id="selectByMemberId" resultType="cc.mrbird.febs.dapp.vo.DappMemberInfoVo">
        select
            a.invite_id inviteId,
            a.address address,
            a.account_type accountType,
            a.active_status activeStatus,
            a.node_type nodeType,
            b.ausd_amount ausdAmount,
            b.nft_devote nftDevote,
            b.amount amount,
            c.available_amount propertyAmount,
            d.available_amount exchangeAmount
        from dapp_member a
        left join dapp_usdt_perk b on a.id = b.member_id
        left join dapp_wallet_mine c on a.id = c.member_id
        left join dapp_wallet_coin d on a.id = d.member_id
        where a.id = #{id}
    </select>