shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.iplatform.base.event;
 
import org.springframework.context.ApplicationEvent;
 
/**
 * 系统角色对应权限改变事件定义,需要通知权限拦截模块,更新权限数据。
 * @author shikeying
 * @date 2023-05-07 移植老代码
 */
public class RoleSecurityChangeEvent extends ApplicationEvent {
 
    public RoleSecurityChangeEvent(Object source) {
        super(source);
    }
 
    /**
     *
     */
    private static final long serialVersionUID = 2695104485536782361L;
 
}