章节删除

This commit is contained in:
none
2023-02-26 18:37:32 +08:00
parent dd7bed66b5
commit 0b47ddc173
5 changed files with 36 additions and 3 deletions

View File

@@ -14,12 +14,14 @@ import java.util.Date;
@Setter
public class CourseChapterDestroyEvent extends ApplicationEvent {
private Integer adminId;
private Integer courseId;
private Integer chapterId;
private Date date;
public CourseChapterDestroyEvent(Object source, Integer adminId, Integer chapterId, Date date) {
public CourseChapterDestroyEvent(Object source, Integer adminId, Integer courseId, Integer chapterId, Date date) {
super(source);
this.adminId = adminId;
this.courseId = courseId;
this.chapterId = chapterId;
this.date = date;
}