课程管理

This commit is contained in:
none
2023-02-26 17:46:13 +08:00
parent 6b4d40d758
commit 3974f068e0
8 changed files with 357 additions and 0 deletions

View File

@@ -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;
}
}