PlayEdu/src/main/java/xyz/playedu/api/event/CourseHourDestroyEvent.java

31 lines
778 B
Java

package xyz.playedu.api.event;
import lombok.Getter;
import lombok.Setter;
import org.springframework.context.ApplicationEvent;
import java.util.Date;
/**
* @Author 杭州白书科技有限公司
* @create 2023/2/26 17:52
*/
@Getter
@Setter
public class CourseHourDestroyEvent extends ApplicationEvent {
private Integer adminId;
private Integer hourId;
private Integer courseId;
private Integer chapterId;
private Date createdAt;
public CourseHourDestroyEvent(Object source, Integer adminId, Integer courseId, Integer chapterId, Integer hourId) {
super(source);
this.adminId = adminId;
this.courseId = courseId;
this.chapterId = chapterId;
this.hourId = hourId;
this.createdAt = new Date();
}
}