qa-prevention-gwj/src/main/java/com/zcloud/service/system/RegulatoryUsersService.java

30 lines
704 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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<PageData> getDeptList(PageData pageData) throws Exception;
/**
* 获取所有数据并填充每条数据的子级列表(递归处理)
*
* @param MENU_ID
* @return
* @throws Exception
*/
public List<PageData> listAllDepartment(String parentId) throws Exception;
public List<PageData> getDeptByShares(PageData pd) throws Exception;
public List<PageData> listAllUser(PageData pd) throws Exception;
}