OyeRealtimeInventoryMapper.java 842 B

12345678910111213141516171819202122232425262728293031
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.OyeRealtimeInventory;
  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 OyeRealtimeInventoryMapper extends IBaseMapper<OyeRealtimeInventory, BigDecimal> {
  11. @Select("select seq_OYE_REALTIME_INVENTORY.nextval from dual")
  12. BigDecimal getResultId();
  13. List<Map<String, Object>> getOyeRealTimeResult(Map<String, Object> mapValue);
  14. BigDecimal getInventoryId(Map<String, Object> map);
  15. Map<String, Object> seleOtmsParams(BigDecimal orderId);
  16. List<Map<String,Object>> receiveSendReport(Map<String, Object> map);
  17. List<String> getSaleAreaRemark(String saler);
  18. }