DilBatchMapper.java 434 B

1234567891011121314
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.DilBatch;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.apache.ibatis.annotations.Select;
  7. @Mapper
  8. public interface DilBatchMapper extends IBaseMapper<DilBatch, Short> {
  9. //获取当前序列值+1
  10. @Select("select seq_DIL_BATCH.nextval from dual")
  11. BigDecimal selectBatchId();
  12. }