LogResultMapper.java 406 B

12345678910111213
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.LogResult;
  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 LogResultMapper extends IBaseMapper<LogResult, BigDecimal> {
  9. @Select("select SEQ_LOG_RESULT.nextval from dual")
  10. BigDecimal nextId();
  11. }