【7.6.0】【sys】【role】更新删除角色的回调

pull/55/MERGE
fengshuonan 2023-06-12 20:54:06 +08:00
parent f5fce2c4cd
commit 45eac5e7d4
2 changed files with 34 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import java.util.Set;
public interface RemoveOrgCallbackApi {
/**
* orgId
* orgId
* <p>
*
*

View File

@ -0,0 +1,33 @@
package cn.stylefeng.roses.kernel.sys.api.callback;
import java.util.Set;
/**
*
*
* @author fengshuonan
* @since 2023/6/12 20:51
*/
public interface RemoveRoleCallbackApi {
/**
* id
* <p>
*
*
* @param beRemovedRoleIdList id
* @author fengshuonan
* @since 2023/6/12 20:52
*/
void validateHaveRoleBind(Set<Long> beRemovedRoleIdList);
/**
*
*
* @param beRemovedRoleIdList id
* @author fengshuonan
* @since 2023/6/12 20:53
*/
void removeRoleAction(Set<Long> beRemovedRoleIdList);
}