From af8cab142a6b15c06e131a8474574dd5b00df982 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期四, 04 十二月 2025 22:09:58 +0800
Subject: [PATCH] feat: 改造微信accesstoken存放在系统配置表中
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/BranchUserQueryVO.java | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/BranchUserQueryVO.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/BranchUserQueryVO.java
new file mode 100644
index 0000000..87489a3
--- /dev/null
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/BranchUserQueryVO.java
@@ -0,0 +1,32 @@
+package com.ruoyi.system.domain.vo;
+
+import java.util.List;
+
+/**
+ * 鍒嗗叕鍙哥敤鎴锋煡璇O
+ *
+ * @author ruoyi
+ */
+public class BranchUserQueryVO
+{
+ /** 鍒嗗叕鍙窱D鍒楄〃 */
+ private List<Long> branchDeptIds;
+
+ public List<Long> getBranchDeptIds()
+ {
+ return branchDeptIds;
+ }
+
+ public void setBranchDeptIds(List<Long> branchDeptIds)
+ {
+ this.branchDeptIds = branchDeptIds;
+ }
+
+ @Override
+ public String toString()
+ {
+ return "BranchUserQueryVO{" +
+ "branchDeptIds=" + branchDeptIds +
+ '}';
+ }
+}
--
Gitblit v1.9.1