AmstruckRequirementPlanMapper.java 480 B

1234567891011121314
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.AmstruckRequirementPlan;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Select;
  6. import java.math.BigDecimal;
  7. @Mapper
  8. public interface AmstruckRequirementPlanMapper extends IBaseMapper<AmstruckRequirementPlan, BigDecimal> {
  9. @Select("select seq_AMSTRUCK_REQUIREMENT_PLAN.nextval from dual")
  10. BigDecimal selectOtherId();
  11. }