From 54a6c048c97011cd2a99fbef2065afe0a167fcfc Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期一, 22 七月 2024 13:46:05 +0800
Subject: [PATCH] fix:成绩统计导出完善
---
src/main/java/com/mindskip/xzs/domain/vo/UserVO.java | 49 ++++++++++++++++++++++++++++++-------------------
1 files changed, 30 insertions(+), 19 deletions(-)
diff --git a/src/main/java/com/mindskip/xzs/domain/vo/UserVO.java b/src/main/java/com/mindskip/xzs/domain/vo/UserVO.java
index 2a8d14a..059f27b 100644
--- a/src/main/java/com/mindskip/xzs/domain/vo/UserVO.java
+++ b/src/main/java/com/mindskip/xzs/domain/vo/UserVO.java
@@ -6,6 +6,7 @@
import java.io.Serializable;
import java.util.Date;
+import java.util.List;
public class UserVO implements Serializable {
@@ -87,15 +88,41 @@
private UserConditionEnum condition;
- private String conditionDetail;
-
private Integer tagId;
- private Integer deptId;
+ private List<Integer> deptIds;
+
+ private List<Integer> tagIds;
+
+ private List<Integer> excludeTagIds;
private Integer pageIndex;
private Integer pageSize;
+
+ public List<Integer> getExcludeTagIds() {
+ return excludeTagIds;
+ }
+
+ public void setExcludeTagIds(List<Integer> excludeTagIds) {
+ this.excludeTagIds = excludeTagIds;
+ }
+
+ public List<Integer> getTagIds() {
+ return tagIds;
+ }
+
+ public void setTagIds(List<Integer> tagIds) {
+ this.tagIds = tagIds;
+ }
+
+ public List<Integer> getDeptIds() {
+ return deptIds;
+ }
+
+ public void setDeptIds(List<Integer> deptIds) {
+ this.deptIds = deptIds;
+ }
public Integer getPageIndex() {
return pageIndex;
@@ -119,22 +146,6 @@
public void setTagId(Integer tagId) {
this.tagId = tagId;
- }
-
- public Integer getDeptId() {
- return deptId;
- }
-
- public void setDeptId(Integer deptId) {
- this.deptId = deptId;
- }
-
- public String getConditionDetail() {
- return conditionDetail;
- }
-
- public void setConditionDetail(String conditionDetail) {
- this.conditionDetail = conditionDetail;
}
public UserConditionEnum getCondition() {
--
Gitblit v1.8.0