| | |
| | | import java.util.Date;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | |
|
| | | import com.moral.common.bean.PageBean;
|
| | | import com.moral.common.bean.PageResult;
|
| | | import com.moral.common.bean.ResultBean;
|
| | | import com.moral.entity.Device;
|
| | | import com.moral.entity.DeviceAndWind;
|
| | | import com.moral.entity.DeviceProperty;
|
| | |
|
| | | public interface DeviceService {
|
| | |
|
| | |
| | | List<Device> getDevicesByProfessionId(Map<String, Object> parameters);
|
| | |
|
| | | List<Device> getDevicesByOrganizationId(Map<String, Object> parameters);
|
| | |
|
| | | Map<String,Long> queryDeviceStateSummary(Integer orgId);
|
| | |
|
| | | void saveOrUpdate(Device device, DeviceProperty deviceProperty);
|
| | |
|
| | | PageBean getDeviceList(PageBean pageBean);
|
| | |
|
| | | void offLinToMaintenance(Map<String, Object> parameters);
|
| | |
|
| | | void saveOrUpdate4Mobile(Device device, DeviceProperty deviceProperty);
|
| | |
|
| | | String getLimitDataByDevice(Map<String, Object> parameters);
|
| | |
|
| | | Device getDeviceByLongitudeAsc(String mac);
|
| | |
|
| | | List<String> getMacsByOrganizationId(List<Object> organizationIdList);
|
| | |
|
| | | //获取烟道设备
|
| | | List<Device> getDeviceById1(int id);
|
| | | //获取厂界设备
|
| | | List<Device> getDeviceById2(int id);
|
| | | //获取车间设备
|
| | | List<Device> getDeviceById3(int id);
|
| | |
|
| | | 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);
|
| | |
|
| | | }
|