All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rexsheng.springboot.faster.system.notice.domain.NoticeBroadcastEvent Maven / Gradle / Ivy

The newest version!
package com.github.rexsheng.springboot.faster.system.notice.domain;

import org.springframework.context.ApplicationEvent;
import org.springframework.util.Assert;

public class NoticeBroadcastEvent extends ApplicationEvent {

    public NoticeBroadcastEvent(SysNotice notice) {
        super(notice);
        Assert.isInstanceOf(SysNotice.class,notice,"通知事件参数必须为SysNotice类型");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy