package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.OyeOutboundResult; import com.steerinfo.framework.mapper.IBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.math.BigDecimal; import java.util.List; import java.util.Map; @Mapper public interface OyeOutboundResultMapper extends IBaseMapper { @Select("select seq_OYE_OUTBOUND_RESULT.nextval from dual") BigDecimal getResultId(); List> oyeOutboundResultMapper(Map mapValue); BigDecimal selectSaleMaterialID(BigDecimal saleMaterialId); int updateSaleMakeDate(Map map); int updateOrderStatus(BigDecimal orderId); Map getOldMes(BigDecimal resultId); int updateSaleMakeDate1(Map updateMap); }