package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.AmstruckSporadicMaterial; import com.steerinfo.framework.mapper.IBaseMapper; import java.math.*; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; @Mapper public interface AmstruckSporadicMaterialMapper extends IBaseMapper { //设置主键id @Select("select seq_AMSTRUCK_SPORADIC_MATERIAL.nextval from dual") BigDecimal getSporadicMaterial(); List> getSporadicOrdersList2(Map mapValue); // 查询承运商不为空的零星物资 List> getSporadicOrdersList3(Map map); List> getSporadicOrdersList4(Map mapValue); }