TmstruckReceiptResultChildMapper.java 404 B

12345678910111213
  1. package com.steerinfo.route.mapper;
  2. import com.steerinfo.framework.mapper.IBaseMapper;
  3. import com.steerinfo.route.model.TmstruckReceiptResultChild;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.math.BigDecimal;
  6. @Mapper
  7. public interface TmstruckReceiptResultChildMapper extends IBaseMapper<TmstruckReceiptResultChild, BigDecimal> {
  8. //获取主键最大值
  9. BigDecimal selectMaxId();
  10. }