办学质量监测教学评价系统
root
2025-05-16 32f1a6bab12c7f6580b27e16d768a26a498b1eb2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.ruoyi.common.core.event;
 
import org.springframework.context.ApplicationEvent;
 
/**
 *  定义一个事件类,用于通知配置变化
 *
 * @author ageerle@163.com
 * date 2024/5/19
 */
public class ConfigChangeEvent extends ApplicationEvent {
    public ConfigChangeEvent(Object source) {
        super(source);
    }
}