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 { //@Select("SELECT * FROM MAP_VERTEX WHERE STATUS=0") List findAllAvailable(); }