2024-03-06 08:46:44 +08:00
|
|
|
package com.ruoyi.quote.mapper;
|
|
|
|
|
|
|
|
import com.ruoyi.quote.domain.MaterialDto;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import org.apache.ibatis.annotations.Select;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ClassName QuoteMapper
|
|
|
|
* @Description TODO
|
|
|
|
* @Author JIAL
|
|
|
|
* @Date 2024/3/5 16:07
|
|
|
|
* @Version 1.0
|
|
|
|
*/
|
|
|
|
public interface QuoteMapper {
|
2024-03-06 11:12:13 +08:00
|
|
|
List<MaterialDto> selectMaterialListByParam(@Param("precMaterialName") String precMaterialName,
|
|
|
|
@Param("vagueMaterialName")String vagueMaterialName,
|
|
|
|
@Param("vagueModel") String vagueModel);
|
2024-03-06 08:46:44 +08:00
|
|
|
}
|