| 12345678910111213141516 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.LogResult;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Options;
- import org.apache.ibatis.annotations.Select;
- import java.math.BigDecimal;
- @Mapper
- public interface LogResultMapper extends IBaseMapper<LogResult, BigDecimal> {
- @Select("select SEQ_LOG_RESULT.nextval from dual")
- @Options(flushCache = Options.FlushCachePolicy.TRUE)
- BigDecimal nextId();
- }
|