mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-23 11:09:29 +08:00
部门删除event
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package xyz.playedu.api.event;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.springframework.context.ApplicationEvent;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author 杭州白书科技有限公司
|
||||
* @create 2023/2/23 15:27
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class DepartmentDestroyEvent extends ApplicationEvent {
|
||||
|
||||
private Integer depId;
|
||||
private Date at;
|
||||
|
||||
public DepartmentDestroyEvent(Object source, Integer depId, Date date) {
|
||||
super(source);
|
||||
this.depId = depId;
|
||||
this.at = date;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user