123456789101112131415 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.TmstruckAbnormalResult;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import java.math.BigDecimal;
- @Mapper
- public interface TmstruckAbnormalResultMapper extends IBaseMapper<TmstruckAbnormalResult, BigDecimal> {
- BigDecimal selectMaxId();
- BigDecimal getTotalIdByTripId(String tripId);
- }
|