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