From df30c88c2c76da0cb607bcf129446f43c9a521da Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Thu, 09 Oct 2025 02:51:02 +0800
Subject: [PATCH] 1
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountUpdateVo.java | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountUpdateVo.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountUpdateVo.java
index dd7e7dc..c84ca30 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountUpdateVo.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountUpdateVo.java
@@ -23,13 +23,16 @@
private Integer id;
// 云信账号
- private String accountId;
+ private String account;
// 手机号(唯一)
private String phoneNumber;
// 密码
private String password;
+
+ // 旧密码
+ private String oldPassword;
// 账号类型: 0:真实 1:虚拟
private Integer accountType;
@@ -45,6 +48,12 @@
// 用户性别,0-未知,1-男,2-女。
private Integer gender;
+
+ //创建群开关 0 开启 1关闭
+ private Integer groupPermissions = 1;
+
+ //添加好友 0 开启 1 关闭
+ private Integer addFriend = 1;
// // 是否支持昵称搜索
// private Boolean supportNicknameSearch = true;
//
--
Gitblit v1.9.3