课程分类删除

This commit is contained in:
none
2023-02-26 18:56:25 +08:00
parent 316d5d2d26
commit 9883faf3d1
5 changed files with 24 additions and 5 deletions

View File

@@ -14,11 +14,13 @@ import java.util.Date;
@Getter
public class CourseCategoryDestroyEvent extends ApplicationEvent {
private Integer adminId;
private Integer categoryId;
private Date at;
public CourseCategoryDestroyEvent(Object source, Integer categoryId, Date date) {
public CourseCategoryDestroyEvent(Object source, Integer adminId, Integer categoryId, Date date) {
super(source);
this.adminId = adminId;
this.categoryId = categoryId;
this.at = date;
}