package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.AmstruckRequirementPlan; import com.steerinfo.framework.mapper.IBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.math.BigDecimal; @Mapper public interface AmstruckRequirementPlanMapper extends IBaseMapper { @Select("select seq_AMSTRUCK_REQUIREMENT_PLAN.nextval from dual") BigDecimal selectOtherId(); }