123456789101112131415161718192021222324252627282930313233 |
- 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<OyeOutboundResult, BigDecimal> {
- @Select("select seq_OYE_OUTBOUND_RESULT.nextval from dual")
- BigDecimal getResultId();
- List<Map<String, Object>> oyeOutboundResultMapper(Map<String, Object> mapValue);
- BigDecimal selectSaleMaterialID(BigDecimal saleMaterialId);
- int updateSaleMakeDate(Map<String,Object> map);
- int updateOrderStatus(BigDecimal orderId);
- Map<String, Object> getOldMes(BigDecimal resultId);
- int updateSaleMakeDate1(Map<String, Object> updateMap);
- }
|