| | |
| | | select * from dapp_member |
| | | where account_status=1 |
| | | </select> |
| | | |
| | | <select id="selectAgentMemberList" resultType="cc.mrbird.febs.dapp.entity.DappMemberEntity"> |
| | | select * from dapp_member a |
| | | inner join dapp_user_member_relate b on a.id=b.member_id |
| | | <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> |
| | | |
| | | |
| | | <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> |