1234567891011121314151617181920 |
- 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<AmsDispatchSaleOrder, BigDecimal> {
- List<Map<String, Object>> getOpenDispatchSaleOrder(Map<String, Object> mapValue);
- //查询序列号主键
- @Select("select seq_AMS_OTHER.nextval from dual")
- BigDecimal selectOtherId();
- }
|