xuxiuxi
2017-07-19 51c810c314e17aebb5935df7165ccf499dc09c31
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package cn.com.basic.face.service.sqlite;
 
import java.util.List;
 
import cn.com.basic.face.discern.entity.Dictionary;
 
/**
 * 数据字典Dao
 */
public class DictionaryDao {
 
    public static DictionaryDao instance = new DictionaryDao();
    public static DictionaryDao getInstance() {
        return instance;
    }
 
    /**
     * 加载国家
     * @return
     */
    public List<Dictionary> loadCountries() {
        return null;
    }
 
    /**
     * 加载证件类型
     * @return
     */
    public List<Dictionary> loadIdTypeList() {
        return null;
    }
 
    /**
     * 加载性别
     * @return
     */
    public List<Dictionary> loadGenderList() {
        return null;
    }
 
    /**
     * 加载访问事由
     * @return
     */
    public List<Dictionary> loadVisitReasonList() {
        return null;
    }
 
    /**
     * 加载分辨率
     * @return
     */
    public List<Dictionary> loadResolutionList() {
        return null;
    }
 
    /**
     * 加载通讯协议
     * @return
     */
    public List<Dictionary> loadProtocolList() {
        return null;
    }
 
    /**
     * 加载摄像机品牌
     * @return
     */
    public List<Dictionary> loadCameraBrandList() {
        return null;
    }
 
    /**
     * 加载访客类型
     * @return
     */
    public List<Dictionary> loadVisitorTypeList() {
        return null;
    }
 
    public List<Dictionary> addDictionary(String type, String name) {
        return null;
    }
 
 
    /**
     * 加载考勤类型
     * @return
     */
    public List<Dictionary> loadAttenderTypeList() {
        return null;
    }
 
}