package com.zcloud.service.system; import com.zcloud.entity.PageData; import com.zcloud.entity.system.Department; import java.util.List; /** * 说明:用户服务接口 * 作者:luoxiaobao * 官网:www.qdkjchina.com */ public interface RegulatoryUsersService { public List getDeptList(PageData pageData) throws Exception; /** * 获取所有数据并填充每条数据的子级列表(递归处理) * * @param MENU_ID * @return * @throws Exception */ public List listAllDepartment(String parentId) throws Exception; public List getDeptByShares(PageData pd) throws Exception; public List listAllUser(PageData pd) throws Exception; }