feat(Sis): 删除入驻员工包括删除授权记录和人像库图片,并调用 E8 平台 API 删除客户信息
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-29 23:22:35 +08:00
parent b7fa3cd788
commit ec23e32ed6
6 changed files with 69 additions and 12 deletions

View File

@@ -2,6 +2,8 @@ package org.dromara.sis.api;
import org.dromara.sis.api.domain.RemotePersonAuth;
import java.util.Collection;
/**
* @author lsm
* @apiNote RemoteSisAuth
@@ -12,4 +14,6 @@ public interface RemoteSisAuth {
Boolean personAuth(RemotePersonAuth personAuth);
Boolean updatePersonAuth(RemotePersonAuth personAuth);
Boolean deletePersonAuth(Collection<Long> personId, Collection<Long> e8Ids);
}