blob: 3443135881927f0cb3692a8191acfd013b33c434 [file] [log] [blame]
Krishyab0cc1882025-06-09 10:54:09 +08001package com.example.myproject.mapper;
2
3import com.baomidou.mybatisplus.core.mapper.BaseMapper;
4import com.example.myproject.entity.SeedRating;
5import org.springframework.data.repository.query.Param;
6
7import java.util.List;
8
9public interface SeedRatingMapper extends BaseMapper<SeedRating> {
10 List<SeedRating> selectHighRatingsByUserId(Long userId);
11 List<SeedRating> selectBySeedIds(@Param("seedIds") List<Long> seedIds);
12}