From 5016dc772bcb3fdba9ce6d255a5674f1a7160964 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期一, 22 七月 2024 11:58:23 +0800
Subject: [PATCH] fix:成绩统计导出完善
---
src/main/java/com/mindskip/xzs/viewmodel/admin/department/DepartmentResponseVM.java | 48 +++++++++++++++++++-----------------------------
1 files changed, 19 insertions(+), 29 deletions(-)
diff --git a/src/main/java/com/mindskip/xzs/viewmodel/admin/department/DepartmentResponseVM.java b/src/main/java/com/mindskip/xzs/viewmodel/admin/department/DepartmentResponseVM.java
index 33dd791..17ed5f4 100644
--- a/src/main/java/com/mindskip/xzs/viewmodel/admin/department/DepartmentResponseVM.java
+++ b/src/main/java/com/mindskip/xzs/viewmodel/admin/department/DepartmentResponseVM.java
@@ -1,7 +1,11 @@
package com.mindskip.xzs.viewmodel.admin.department;
import com.mindskip.xzs.base.BasePage;
+import lombok.Data;
+import java.util.List;
+
+@Data
public class DepartmentResponseVM extends BasePage {
@@ -9,38 +13,24 @@
private String name;
- private String deleted;
+ /**
+ * 鐖剁骇ID
+ */
+ private Integer parentId;
- public Integer getId() {
- return id;
- }
+ /**
+ * 瀛愮骇鏁版嵁
+ */
+ private List<DepartmentResponseVM> children;
- public void setId(Integer id) {
- this.id = id;
- }
+ private String special;
- public String getName() {
- return name;
- }
+ private Integer level;
- public void setName(String name) {
- this.name = name;
- }
+ /**
+ * 绠$悊鍛�
+ */
+ private List<Integer> adminIds;
+ private List<String> adminNames;
- public String getDeleted() {
- return deleted;
- }
-
- public void setDeleted(String deleted) {
- this.deleted = deleted;
- }
-
- @Override
- public String toString() {
- return "Department{" +
- "id=" + id +
- ", name='" + name + '\'' +
- ", deleted='" + deleted + '\'' +
- '}';
- }
}
--
Gitblit v1.8.0