部门代码优化

This commit is contained in:
none
2023-02-25 11:18:09 +08:00
parent bfa1040a54
commit 5672c70ccb
7 changed files with 69 additions and 83 deletions

View File

@@ -15,10 +15,12 @@ import java.util.Date;
public class DepartmentDestroyEvent extends ApplicationEvent {
private Integer depId;
private Integer adminId;
private Date at;
public DepartmentDestroyEvent(Object source, Integer depId, Date date) {
public DepartmentDestroyEvent(Object source, Integer adminId, Integer depId, Date date) {
super(source);
this.adminId = adminId;
this.depId = depId;
this.at = date;
}