DilCapacityTimesMapper.java 312 B

1234567891011
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.DilCapacityTimes;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.math.BigDecimal;
  6. @Mapper
  7. public interface DilCapacityTimesMapper extends IBaseMapper<DilCapacityTimes, BigDecimal> {
  8. }