package com.bofeng.dao; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.bofeng.entity.NotifyOpen; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Mapper @Repository public interface NotifyOpenMapper extends BaseMapper { List selectByPlaceId(@Param("placeId") Long placeId); List selectByOpenId(@Param("openId") String openId); }