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;
|
}
|
|
}
|