OyeOutboundResultMapper.java 917 B

123456789101112131415161718192021222324252627282930313233
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.OyeOutboundResult;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.apache.ibatis.annotations.Select;
  7. import java.math.BigDecimal;
  8. import java.util.List;
  9. import java.util.Map;
  10. @Mapper
  11. public interface OyeOutboundResultMapper extends IBaseMapper<OyeOutboundResult, BigDecimal> {
  12. @Select("select seq_OYE_OUTBOUND_RESULT.nextval from dual")
  13. BigDecimal getResultId();
  14. List<Map<String, Object>> oyeOutboundResultMapper(Map<String, Object> mapValue);
  15. BigDecimal selectSaleMaterialID(BigDecimal saleMaterialId);
  16. int updateSaleMakeDate(Map<String,Object> map);
  17. int updateOrderStatus(BigDecimal orderId);
  18. Map<String, Object> getOldMes(BigDecimal resultId);
  19. int updateSaleMakeDate1(Map<String, Object> updateMap);
  20. }