- 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<NotifyOpen> {
- List<NotifyOpen> selectByPlaceId(@Param("placeId") Long placeId);
- List<NotifyOpen> selectByOpenId(@Param("openId") String openId);
- }
|