cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.web.service;
 
import java.util.List;
import java.util.Map;
 
import cn.ksource.core.web.TreeNode;
 
public interface ZzjgService {
 
    /**
     * 获取组织架构树
     * @return
     * @version V1.0.0
     * @author 杨凯
     * @date Apr 22, 2014 3:11:58 PM
     */
    public TreeNode getZzjgTree();
    /**
     * 根据id得到某些部门
     * @param ids
     * @return
     */
    public List getDeptList(String ids);
    /**
     * 根据id得到部门
     * @param id
     * @return
     */
    public Map getById(String id);
}