xuxiuxi
2017-07-19 3ecb13ed5456ad33762cb41c8e6ddad07a61e1ce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cn.com.basic.face.service.sqlite;
 
import java.util.List;
 
import cn.com.basic.face.discern.entity.Dictionary;
 
public class DepartmentDao {
 
    public static DepartmentDao instance = new DepartmentDao();
    public static DepartmentDao getInstance() {
        return instance;
    }
 
    /**
     * 已数据字典封装的部门List
     * @return
     */
    public List<Dictionary> loadDepartmentDictionary() {
 
        return null;
    }
 
}