package com.xcgl.device.dao; import java.util.List; import org.jeecgframework.minidao.annotation.MiniDao; import org.springframework.stereotype.Repository; import com.xcgl.device.entity.DeviceEntity; import com.xcgl.sensormonitorpoint.entity.SensorMonitorPointEntity; @Repository @MiniDao public interface DeviceDao { List getAllDevice(); List getAllSensorMonitorPoint(); }