TmstruckLoadResultMapper.java 598 B

1234567891011121314151617181920212223
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.TmstruckLoadResult;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.apache.ibatis.annotations.Select;
  7. import java.math.BigDecimal;
  8. import java.util.Date;
  9. import java.util.List;
  10. import java.util.Map;
  11. @Mapper
  12. public interface TmstruckLoadResultMapper extends IBaseMapper<TmstruckLoadResult, BigDecimal> {
  13. //查询最大ID值
  14. @Select("select seq_tmstruck_load_result.nextval from dual")
  15. BigDecimal selectMaxId();
  16. }