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>