| 12345678910111213141516171819 |
- 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<DeviceEntity> getAllDevice();
-
- List<SensorMonitorPointEntity> getAllSensorMonitorPoint();
- }
|