package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.AmsDispatchSaleOrder; import com.steerinfo.framework.mapper.IBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.math.BigDecimal; import java.util.List; import java.util.Map; @Mapper public interface AmsDispatchSaleOrderMapper extends IBaseMapper { List> getOpenDispatchSaleOrder(Map mapValue); //查询序列号主键 @Select("select seq_AMS_OTHER.nextval from dual") BigDecimal selectOtherId(); }