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
28
29
30
31
32
33
34
35
36
37
38
39
| package cn.com.basic.face.service.sqlite;
|
| import java.util.List;
|
| import cn.com.basic.face.discern.entity.Device;
|
| /**
| * 设备Dao
| */
| public class DeviceDao {
|
| private static DeviceDao instance = new DeviceDao();
|
| public static DeviceDao getInstance() {
| return instance;
| }
|
| /**
| * 加载主设备
| * @param sn 设备序列号
| * @param type 设备类型
| */
| public List<Device> loadMainDevice(String type, String sn) {
|
| return null;
| }
|
| /**
| * 加载摄像头
| * @param type 设备类型
| * @param belongId 所属设备Id(主设备)
| * @return
| */
| public List<Device> loadCamera(String type, String belongId) {
|
| return null;
| }
|
| }
|
|