| | |
| | | package com.moral.service;
|
| | |
|
| | | import com.moral.common.bean.PageBean;
|
| | | import com.moral.common.bean.PageResult;
|
| | | import com.moral.entity.Device;
|
| | | import com.moral.entity.DeviceProperty;
|
| | |
|
| | | 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;
|
| | |
|
| | | public interface DeviceService {
|
| | |
|
| | |
| | | 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);
|
| | | }
|