From ba5ba480cef0788a50d9543d4cb3d7c5046243c8 Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Mon, 25 Aug 2025 23:35:53 +0800
Subject: [PATCH] 1

---
 ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountVo.java |   13 ++++++++++---
 1 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountVo.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountVo.java
index 166d958..dc49423 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountVo.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountVo.java
@@ -13,6 +13,8 @@
 @Data
 public class UserAccountVo {
 
+    private String keywords;
+
     // 自增ID主键
     private Integer id;
 
@@ -26,7 +28,7 @@
     private String password;
 
     // 账号类型: 0:真实 1:虚拟
-    private Integer accountType = 0;
+    private Integer accountType;
 
     // 云信账号
     private String cloudMessageAccount;
@@ -34,8 +36,8 @@
     // 昵称
     private String nickname;
 
-    // 账号状态: 0:正常 1:禁用
-    private Integer status = 0;
+    // 账号状态: 1:正常 0:禁用
+    private Integer status;
 
     // 最近登录时间
     private Date loginTime;
@@ -69,4 +71,9 @@
     private Date updateTime;
 
     private Boolean deleted;
+
+    //开始时间
+    private Date startTime;
+    //结束时间
+    private Date endTime;
 }

--
Gitblit v1.9.3