QmsQueueSpellingListMapper.java 762 B

1234567891011121314151617181920212223242526
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.QmsQueueSpellingList;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import java.util.Map;
  6. import org.apache.ibatis.annotations.Mapper;
  7. import org.apache.ibatis.annotations.Select;
  8. @Mapper
  9. public interface QmsQueueSpellingListMapper extends IBaseMapper<QmsQueueSpellingList, BigDecimal> {
  10. //查询最大主键
  11. @Select("select SEQ_QUEUE_SPELLING_LIST.nextval from dual")
  12. BigDecimal selectMaxId();
  13. //删除多拼排序队列
  14. Integer deleteByQueueResultId(BigDecimal queueResultId);
  15. int updateListEnFactory(Map<String, Object> mesMap);
  16. Integer existsCapacity(Object capacityId);
  17. int updateOOMLoadWarehouse(Map<String, Object> mesMap);
  18. }