From 11ffae1ecbe3d26863fd51262d7ffb043eb089da Mon Sep 17 00:00:00 2001
From: dd <gitluke@outlook.com>
Date: Mon, 27 Oct 2025 03:38:28 +0800
Subject: [PATCH] 1

---
 ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountUpdateVo.java |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 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 e6dac8f..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
@@ -20,11 +20,10 @@
 
 
     // 自增ID主键
-    @TableId(type = IdType.AUTO) // 主键自增
     private Integer id;
 
     // 云信账号
-    private String accountId;
+    private String account;
 
     // 手机号(唯一)
     private String phoneNumber;
@@ -32,18 +31,29 @@
     // 密码
     private String password;
 
+    // 旧密码
+    private String oldPassword;
+
     // 账号类型: 0:真实 1:虚拟
     private Integer accountType;
 
     // 昵称
     private String nickname;
 
-    // 账号状态: 1:正常 0:禁用
+    // 账号状态: 0:正常 1:禁用
     private Integer status;
 
     // 个性签名
     private String signature;
+    // 用户性别,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