liujie
3 天以前 3033ccf3878fae2c204df53be2a283f29f5853ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.system.listener.event;
 
import org.springframework.context.ApplicationEvent;
 
/**
 * @author xiaochen
 * @ClassName member微信用户信息的注册修改的发布事件
 * @Description 微信用户信息的注册修改的发布事件
 * @date 2021-06-24 15:04
 */
public class PublishTopicLiveInfoEvent extends ApplicationEvent {
 
    public PublishTopicLiveInfoEvent(String source) {
        super(source);
    }
 
}