mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-25 20:35:35 +08:00
代码格式化
This commit is contained in:
@@ -1,13 +1,19 @@
|
||||
/**
|
||||
* This file is part of the PlayEdu.
|
||||
* (c) 杭州白书科技有限公司
|
||||
*/
|
||||
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
|
||||
@@ -18,7 +24,8 @@ public class CourseChapterDestroyEvent extends ApplicationEvent {
|
||||
private Integer chapterId;
|
||||
private Date createdAt;
|
||||
|
||||
public CourseChapterDestroyEvent(Object source, Integer adminId, Integer courseId, Integer chapterId) {
|
||||
public CourseChapterDestroyEvent(
|
||||
Object source, Integer adminId, Integer courseId, Integer chapterId) {
|
||||
super(source);
|
||||
this.adminId = adminId;
|
||||
this.courseId = courseId;
|
||||
|
||||
Reference in New Issue
Block a user