xiaoyong931011
2023-06-06 d9ec4f16a6fc58d416d35d3f484a85999755d8b3
src/main/resources/mapper/dapp/DappMemberDao.xml
@@ -23,6 +23,9 @@
            <if test="record.accountStatus != null">
                and a.account_status = #{record.accountStatus}
            </if>
            <if test="record.accountType != null">
                and a.account_type = #{record.accountType}
            </if>
            <if test="record.changeAble != null">
                and a.change_able = #{record.changeAble}
            </if>
@@ -191,6 +194,7 @@
            a.invite_id inviteId,
            a.account_type accountType,
            a.active_status activeStatus,
            a.node_type nodeType,
            b.ausd_amount ausdAmount,
            b.nft_devote nftDevote,
            b.amount amount,
@@ -243,4 +247,9 @@
        select * from dapp_member
            where active_status = 1
    </select>
    <select id="selectByNodetype" resultType="cc.mrbird.febs.dapp.entity.DappMemberEntity">
        select * from dapp_member
            where node_type = 1
    </select>
</mapper>