1234567891011121314 |
- 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<AmstruckRequirementPlan, BigDecimal> {
- @Select("select seq_AMSTRUCK_REQUIREMENT_PLAN.nextval from dual")
- BigDecimal selectOtherId();
- }
|