NotifyOpenMapper.java 505 B

12345678910111213141516
  1. package com.bofeng.dao;
  2. import com.baomidou.mybatisplus.mapper.BaseMapper;
  3. import com.bofeng.entity.NotifyOpen;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.stereotype.Repository;
  7. import java.util.List;
  8. @Mapper
  9. @Repository
  10. public interface NotifyOpenMapper extends BaseMapper<NotifyOpen> {
  11. List<NotifyOpen> selectByPlaceId(@Param("placeId") Long placeId);
  12. List<NotifyOpen> selectByOpenId(@Param("openId") String openId);
  13. }