[修改] 监控流程 调整处理人 永久

This commit is contained in:
bupengxiang
2023-04-28 10:10:44 +08:00
parent d0418b650a
commit 9b9457b9dd
9 changed files with 65 additions and 10 deletions
@@ -42,6 +42,13 @@ public interface IUserEoService {
UserEO getUserEoById(String usid);
List<UserVO> getUserByIdList(List<String> userIdList);
/**
* 不考虑 删除的情况
* 因流程中 人员被删除,但是审批历史中人要 回显正确
* @param userIdList
* @return
*/
List<UserVO> getUserByIdListNodel(List<String> userIdList);
IPage<Map<String, Object>> list(int pageNo, int pageSize, String account, String roleName);
@@ -57,6 +64,11 @@ public interface IUserEoService {
public void importExcelUser(List<UserImportVO> list);
List<Map<String, Object>> allList(String account, String roleName);
/**
* 不考虑 删除的情况
* 因流程中 人员被删除,但是审批历史中人要 回显正确
* @param userId
* @return
*/
UserEO getUserByIdNodel(String userId);
}