| | |
| | | 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 {
|
| | |
| | |
|
| | | Device getDeviceByMac(String mac);
|
| | |
|
| | | List<Device> query(Map<String,Object> map);
|
| | | PageResult query(Integer orgId, String deviceName,Integer pageSize,Integer pageNo);
|
| | |
|
| | | PageResult query(Integer orgId, Integer mpId, Integer pageSize, Integer pageNo);
|
| | |
|
| | | PageBean queryByPageBean(PageBean pageBean);
|
| | |
|
| | |
| | | void addOrModify(Device device);
|
| | |
|
| | | List<Device> getDevicesByMonitorPointId(Integer monitorPointId);
|
| | |
|
| | | List<Map<String,String>> queryDevicesState(List<String> macList,Boolean withData);
|
| | | }
|