mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-23 11:09:29 +08:00
章节删除
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user