AmsDispatchSaleOrderMapper.java 616 B

1234567891011121314151617181920
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.AmsDispatchSaleOrder;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Select;
  6. import java.math.BigDecimal;
  7. import java.util.List;
  8. import java.util.Map;
  9. @Mapper
  10. public interface AmsDispatchSaleOrderMapper extends IBaseMapper<AmsDispatchSaleOrder, BigDecimal> {
  11. List<Map<String, Object>> getOpenDispatchSaleOrder(Map<String, Object> mapValue);
  12. //查询序列号主键
  13. @Select("select seq_AMS_OTHER.nextval from dual")
  14. BigDecimal selectOtherId();
  15. }