package com.hai.dao; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; import java.util.Map; /** * mapper扩展类 */ public interface BsDistributionUserRelMapperExt { @Select({ "" }) List> getDistributionAgent(); @Select({ "" }) List> getDistributionFirst(@Param("agentId") Long agentId); @Select({ "" }) List> getDistributionSecond(@Param("agentId") Long agentId , @Param("popularizeUserId") Long popularizeUserId); }