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

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

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

import lombok.Getter;
import org.springframework.context.ApplicationEvent;

/**
 * 短信通道启用事件
 * @author xxm
 * @since 2023/8/5
 */
@Getter
public class SmsChannelEnableEvent extends ApplicationEvent {
    private final String code;

    public SmsChannelEnableEvent(Object source, String code) {
        super(source);
        this.code = code;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy