package com.ruoyi.sales.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.sales.pojo.SalesQuotationProduct; import io.lettuce.core.dynamic.annotation.Param; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface SalesQuotationProductMapper extends BaseMapper { // List selectBySalesQuotationIds(List salesQuotationIds); List selectBySalesQuotationId(@Param("id") Long id); }