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

64 lines
1.4 KiB
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.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;
}