mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-23 11:09:29 +08:00
课程管理
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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:42
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class CourseChapterDestroyEvent extends ApplicationEvent {
|
||||
private Integer adminId;
|
||||
private Integer chapterId;
|
||||
private Date date;
|
||||
|
||||
public CourseChapterDestroyEvent(Object source, Integer adminId, Integer chapterId, Date date) {
|
||||
super(source);
|
||||
this.adminId = adminId;
|
||||
this.chapterId = chapterId;
|
||||
this.date = date;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user