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

64 lines
1.4 KiB
Java
Raw Normal View History

2024-02-06 11:02:25 +08:00
package com.zcloud.service.system;
import com.zcloud.entity.Page;
import com.zcloud.entity.PageData;
import java.util.List;
/**
*
* yangming
* www.qdkjchina.com
* @version
*/
public interface UserExamineService {
/**
* @param pd
* @throws Exception
*/
public void saveUser(PageData pd)throws Exception;
/**ID
* @param pd
* @throws Exception
*/
public List<PageData> userExamineList(PageData pd)throws Exception;
/**ID
* @param pd
* @throws Exception
*/
/**ID
* @param pd
* @return
* @throws Exception
*/
public List<PageData> findDeptById(PageData pd)throws Exception;
/**ID
* @param pd
* @return
* @throws Exception
*/
public void deleteExamine(PageData pd)throws Exception;
/**ID
* @param pd
* @return
* @throws Exception
*/
public void deleteApprove(PageData pd)throws Exception;
/**ID
* @param pd
* @return
* @throws Exception
*/
public void deleteConfirm(PageData pd)throws Exception;
List<PageData> isManageUser(PageData pd)throws Exception;
}