沈斌
2018-01-30 e81c5152ca27f66f264b30f2d36fd4082689ac79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.moral.service;
 
import java.util.List;
import java.util.Map;
import com.moral.common.bean.PageBean;
import com.moral.entity.Device;
 
public interface DeviceService {
 
    Map<String, Object> getDeviceStatesByAccount(Map<String, Object> parameters);
 
    List<Map<String, Object>> getSensorsByDevice(String mac);
 
    void saveOrUpdateDevice(Device device);
 
    List<Device> getInstallDevicesByOperateUser(Integer uid, Integer pageIndex, Integer pageSize);
 
    Device getDeviceByMac(String mac);
 
    PageBean queryByPageBean(PageBean pageBean);
 
    void deleteByIds(Integer[] ids);
 
    void addOrModify(Device device);
 
    List<Device> getDevicesByMonitorPointId(Integer monitorPointId);
}