| | |
| | | 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 tab);
|
| | | List<DeviceAndWind> byMonitorIdGetDeviceAndWindSpecial(String id,String tab);
|
| | |
|
| | | List<Device> getDeviceByCodeAndId(String code,String id);
|
| | |
|
| | | String byMacGetOrgId(String mac);
|
| | | //通过mac号或者设备名进行查询设备
|
| | | List<Device> getDevice(String macOrName);
|
| | |
|
| | | List<Device> getDeviceByCode();
|
| | |
|
| | | List<Device> getDevicesByAccountId(String id);
|
| | |
|
| | | }
|