沈斌
2018-01-30 b4cabe178f1a36433270c79048beecfab0edc487
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
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);
 
    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);
}