fix
Helius
2022-06-07 22d018876ed1fa4e167e6b4823db1bfbd13d5579
src/main/resources/mapper/dapp/DappMemberDao.xml
@@ -4,6 +4,9 @@
    <select id="selectByAddress" resultType="cc.mrbird.febs.dapp.entity.DappMemberEntity">
        select * from dapp_member where address=#{address}
        <if test="chain != null and chain != ''">
            and chain_type=#{chain}
        </if>
    </select>
    <select id="selectMemberInfoByInviteId" resultType="cc.mrbird.febs.dapp.entity.DappMemberEntity">
@@ -69,5 +72,6 @@
        <if test="size != null">
            limit ${size}
        </if>
        order by id desc
    </select>
</mapper>