MapVertexMapper.java 485 B

12345678910111213141516
  1. package com.steerinfo.inPlantNavigation.mapper;
  2. import com.steerinfo.framework.mapper.IBaseMapper;
  3. import com.steerinfo.inPlantNavigation.model.MapVertex;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Select;
  6. import java.math.BigDecimal;
  7. import java.util.List;
  8. @Mapper
  9. public interface MapVertexMapper extends IBaseMapper<MapVertex, BigDecimal> {
  10. //@Select("SELECT * FROM MAP_VERTEX WHERE STATUS=0")
  11. List<MapVertex> findAllAvailable();
  12. }