DeviceDao.java 425 B

12345678910111213141516171819
  1. package com.xcgl.device.dao;
  2. import java.util.List;
  3. import org.jeecgframework.minidao.annotation.MiniDao;
  4. import org.springframework.stereotype.Repository;
  5. import com.xcgl.device.entity.DeviceEntity;
  6. import com.xcgl.sensormonitorpoint.entity.SensorMonitorPointEntity;
  7. @Repository
  8. @MiniDao
  9. public interface DeviceDao {
  10. List<DeviceEntity> getAllDevice();
  11. List<SensorMonitorPointEntity> getAllSensorMonitorPoint();
  12. }