12345678910111213141516 |
- package com.steerinfo.inPlantNavigation.mapper;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import com.steerinfo.inPlantNavigation.model.MapVertex;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Select;
- import java.math.BigDecimal;
- import java.util.List;
- @Mapper
- public interface MapVertexMapper extends IBaseMapper<MapVertex, BigDecimal> {
- //@Select("SELECT * FROM MAP_VERTEX WHERE STATUS=0")
- List<MapVertex> findAllAvailable();
- }
|