12345678910111213141516171819202122232425262728293031 |
- 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<OyeRealtimeInventory, BigDecimal> {
- @Select("select seq_OYE_REALTIME_INVENTORY.nextval from dual")
- BigDecimal getResultId();
- List<Map<String, Object>> getOyeRealTimeResult(Map<String, Object> mapValue);
- BigDecimal getInventoryId(Map<String, Object> map);
- Map<String, Object> seleOtmsParams(BigDecimal orderId);
- List<Map<String,Object>> receiveSendReport(Map<String, Object> map);
- List<String> getSaleAreaRemark(String saler);
- }
|