WmspInboundDrivingResultMapper.java 414 B

1234567891011121314
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.WmspInboundDrivingResult;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.math.BigDecimal;
  6. @Mapper
  7. public interface WmspInboundDrivingResultMapper extends IBaseMapper<WmspInboundDrivingResult, BigDecimal> {
  8. BigDecimal getCount();
  9. Integer selectInboundStack(Integer driverId);
  10. }