| | |
| | | import com.moral.common.bean.PageBean;
|
| | | import com.moral.common.bean.PageResult;
|
| | | import com.moral.entity.Device;
|
| | | import com.moral.entity.DeviceAndWind;
|
| | | import com.moral.entity.DeviceProperty;
|
| | |
|
| | | public interface DeviceService {
|
| | |
| | | List<Device> queryDevice(Map<String,Object> map);
|
| | |
|
| | | Map<String, Object> getAllFieldByMac(Map<String, Object> parameters);
|
| | |
|
| | | List<DeviceAndWind> getAllDevice();
|
| | |
|
| | | List<String> getAllMac();
|
| | |
|
| | | Device byMacGetDevice(String mac);
|
| | |
|
| | | List<DeviceAndWind> byMonitorIdGetDeviceAndWind(String id,String time,String tab);
|
| | |
|
| | | DeviceAndWind getDeviceAndWindByMac(String mac,String time,String table);
|
| | | }
|