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

cn.bootx.platform.notice.event.sms.SmsChannelAddEvent Maven / Gradle / Ivy

The newest version!
package cn.bootx.platform.notice.event.sms;

import cn.bootx.platform.notice.dto.sms.SmsChannelConfigDto;
import lombok.Getter;
import org.springframework.context.ApplicationEvent;

/**
 * 短信渠道添加事件
 * @author xxm
 * @since 2023/8/5
 */
@Getter
public class SmsChannelAddEvent extends ApplicationEvent {
    private final SmsChannelConfigDto channelConfig;

    public SmsChannelAddEvent(Object source, SmsChannelConfigDto channelConfig) {
        super(source);
        this.channelConfig = channelConfig;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy