yaowanxin
6 天以前 377900a395f0238c98c5fbc945c2bea302b964f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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<SalesQuotationProduct> {
//    List<SalesQuotationProduct> selectBySalesQuotationIds(List<Long> salesQuotationIds);
 
    List<SalesQuotationProduct> selectBySalesQuotationId(@Param("id") Long id);
}