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

com.tlcsdm.log.event.LogEvent Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package com.tlcsdm.log.event;

import com.tlcsdm.log.domain.LogDocument;
import lombok.Getter;
import org.springframework.context.ApplicationEvent;

/**
 * @author: 唐 亮
 * @date: 2022/3/13 0:16
 * @since: 1.0
 */
@Getter
public class LogEvent extends ApplicationEvent {
    private LogDocument logDocument;

    public LogEvent(Object source, LogDocument logDocument) {
        super(source);
        this.logDocument = logDocument;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy