123456789101112131415161718 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.TmsshipControlLine;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- import java.util.Map;
- @Mapper
- public interface TmsshipControlLineMapper extends IBaseMapper<TmsshipControlLine, Short> {
- Short selectMaxId();
- List<Map<String,Object>> getControlLines(Map<String,Object> map);
- }
|