1234567891011 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.DilCapacityTimes;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import java.math.BigDecimal;
- @Mapper
- public interface DilCapacityTimesMapper extends IBaseMapper<DilCapacityTimes, BigDecimal> {
- }
|