【7.6.0】【sys】【user】更新删除用户的回调方法

pull/55/MERGE
fengshuonan 2023-06-11 22:38:29 +08:00
parent 9f5a6a2a2c
commit fd44b6d1a0
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
package cn.stylefeng.roses.kernel.sys.api.callback;
import java.util.Set;
/**
*
*
* @author fengshuonan
* @since 2023/6/11 22:36
*/
public interface RemoveUserCallbackApi {
/**
* id
* <p>
*
*
* @param beRemovedUserIdList id
* @author fengshuonan
* @since 2023/6/11 22:37
*/
void validateHaveUserBind(Set<Long> beRemovedUserIdList);
/**
*
*
* @param beRemovedUserIdList id
* @author fengshuonan
* @since 2023/6/11 22:37
*/
void removeUserAction(Set<Long> beRemovedUserIdList);
}