AmsPurchaseOrderMapper.java 862 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.AmsPurchaseOrder;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import java.util.List;
  6. import java.util.Map;
  7. import org.apache.ibatis.annotations.Mapper;
  8. import org.apache.ibatis.annotations.Select;
  9. @Mapper
  10. public interface AmsPurchaseOrderMapper extends IBaseMapper<AmsPurchaseOrder, BigDecimal> {
  11. /**
  12. * 展示所有采购订单信息
  13. * @param mapValue
  14. * @return
  15. */
  16. List<Map<String,Object>> getPurchaseOrderList(Map<String,Object> mapValue);
  17. /**
  18. * 得到最大id
  19. * @return
  20. */
  21. BigDecimal selectMaxId();
  22. @Select("select seq_AMS_PURCHASE.nextval from dual")
  23. BigDecimal selectPurchaseId();
  24. /*
  25. App端查询采购订单
  26. */
  27. List<Map<String, Object>> getAppPurchaseOrderList(Integer carrierId);
  28. }