package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.OyeRealtimeInventory; 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 OyeRealtimeInventoryMapper extends IBaseMapper { @Select("select seq_OYE_REALTIME_INVENTORY.nextval from dual") BigDecimal getResultId(); List> getOyeRealTimeResult(Map mapValue); BigDecimal getInventoryId(Map map); Map seleOtmsParams(BigDecimal orderId); List> receiveSendReport(Map map); List getSaleAreaRemark(String saler); }