src/main/resources/mapper/modules/MallMemberMapper.xml
@@ -491,4 +491,15 @@ a.account_level = 3 </if> </select> <select id="selectOwnCntByInviteIdAndAccountLevel" resultType="cc.mrbird.febs.mall.entity.MallMember"> select IFNULL(count(1),0) from mall_member x where x.referrer_id=#{inviteId} and x.level != 'ZERO_LEVEL' <if test="accountLevel == 2"> and x.account_level = 2 </if> <if test="accountLevel == 3"> and x.accountLevel in (2, 3) </if> </select> </mapper>