课程分类

This commit is contained in:
none
2023-02-24 14:12:51 +08:00
parent 2ca2b0989a
commit 97820eb402
12 changed files with 516 additions and 1 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/24 14:01
*/
@Setter
@Getter
public class CourseCategoryDestroyEvent extends ApplicationEvent {
private Integer categoryId;
private Date at;
public CourseCategoryDestroyEvent(Object source, Integer categoryId, Date date) {
super(source);
this.categoryId = categoryId;
this.at = date;
}
}