Helius
2024-04-08 673b280cfc2c77b90cff04140cf59225e495b0cb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.mall.mapper;
 
import cc.mrbird.febs.mall.entity.MallElectronicFence;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface MallElectronicFenceMapper extends BaseMapper<MallElectronicFence> {
 
    MallElectronicFence selectByTeamLeaderCode(@Param("teamLeaderCode")String uniqueCode);
 
    List<MallElectronicFence> selectAllOnlineLeader();
}