system.task.events.TaskAddEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of task Show documentation
Show all versions of task Show documentation
jishi series products task on java
The newest version!
package system.task.events;
import lombok.Getter;
import org.springframework.context.ApplicationEvent;
import system.task.Task;
/**
* 任务添加事件
*/
public class TaskAddEvent extends ApplicationEvent {
@Getter
private final Task task;
public TaskAddEvent(Task task) {
super(task);
this.task = task;
}
}