12345678910111213141516171819202122232425262728 |
- 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();
- // app端公开抢单
- List<Map<String, Object>> getDispatchSaleOrderList();
- List<Map<String,Object>> getMaterialMessages(BigDecimal dispatchId);
- // 查询app端已抢的销售订单
- List<Map<String, Object>> getLockDispatchSaleOrderList(BigDecimal carrierId);
- }
|