package com.ruoyi.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.domain.ReviewStandard; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface ReviewStandardMapper extends BaseMapper { List findListByStandardIdAndType(@Param("standardId") Long standardId, @Param("type") String type); }