学员管理

This commit is contained in:
none
2023-02-23 14:51:34 +08:00
parent 0dc02ffad7
commit 4dfd5518cb
11 changed files with 636 additions and 17 deletions

View File

@@ -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 13:51
*/
@Getter
@Setter
public class UserDestroyEvent extends ApplicationEvent {
private Integer userId;
private Date at;
public UserDestroyEvent(Object source, Integer userId, Date date) {
super(source);
this.userId = userId;
this.at = date;
}
}