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

30 lines
704 B
Java
Raw Normal View History

2023-11-07 09:32:12 +08:00
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;
}