xiaoyong931011
2022-09-15 1ef9059f14c3dc658ea55a85f64e831b7d67e8d0
1
2
3
4
5
6
7
8
9
10
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;
 
public interface MallElectronicFenceMapper extends BaseMapper<MallElectronicFence> {
 
    MallElectronicFence selectByTeamLeaderCode(@Param("teamLeaderCode")String uniqueCode);
}