fix
Helius
2022-04-06 18b363581c21fc5a8fba893a30fd652b00433e77
src/main/resources/mapper/dapp/DappMemberDao.xml
@@ -53,4 +53,21 @@
            limit ${size}
        </if>
    </select>
    <select id="selectParentsList" resultType="cc.mrbird.febs.dapp.entity.DappMemberEntity">
        select * from dapp_member a
        <where>
            1=1
            <if test="list != null">
                and a.invite_id in
                <foreach collection="list" close=")" open="(" item="item" separator=",">
                    ${item}
                </foreach>
            </if>
        </where>
        <if test="size != null">
            limit ${size}
        </if>
    </select>
</mapper>