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 { @Select("select SEQ_LOG_RESULT.nextval from dual") BigDecimal nextId(); }