blob: 3443135881927f0cb3692a8191acfd013b33c434 [file] [log] [blame]
package com.example.myproject.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.myproject.entity.SeedRating;
import org.springframework.data.repository.query.Param;
import java.util.List;
public interface SeedRatingMapper extends BaseMapper<SeedRating> {
List<SeedRating> selectHighRatingsByUserId(Long userId);
List<SeedRating> selectBySeedIds(@Param("seedIds") List<Long> seedIds);
}