From 2160f80eaa4a9a2b62fc58bb06335493cee4528f Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Thu, 28 Aug 2025 02:33:03 +0800
Subject: [PATCH] 1
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/UserAccountUpdateVo.java | 44 ++++++++++++++++++++++++--------------------
1 files changed, 24 insertions(+), 20 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 4acaeb1..dd7e7dc 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,8 +20,10 @@
// 自增ID主键
- @TableId(type = IdType.AUTO) // 主键自增
private Integer id;
+
+ // 云信账号
+ private String accountId;
// 手机号(唯一)
private String phoneNumber;
@@ -30,34 +32,36 @@
private String password;
// 账号类型: 0:真实 1:虚拟
- private Integer accountType = 0;
+ private Integer accountType;
// 昵称
private String nickname;
// 账号状态: 0:正常 1:禁用
- private Integer status = 0;
+ private Integer status;
// 个性签名
private String signature;
+ // 用户性别,0-未知,1-男,2-女。
+ private Integer gender;
- // 是否支持昵称搜索
- private Boolean supportNicknameSearch = true;
+// // 是否支持昵称搜索
+// private Boolean supportNicknameSearch = true;
+//
+// // 是否支持手机搜索
+// private Boolean supportPhoneSearch = true;
+//
+// // 是否支持ID搜索
+// private Boolean supportIdSearch = true;
+//
+// // 是否支持用户名搜索
+// private Boolean supportUsernameSearch = true;
+//
+// // 是否申请删除账号
+// private Boolean requestDelete = true;
- // 是否支持手机搜索
- private Boolean supportPhoneSearch = true;
-
- // 是否支持ID搜索
- private Boolean supportIdSearch = true;
-
- // 是否支持用户名搜索
- private Boolean supportUsernameSearch = true;
-
- // 是否申请删除账号
- private Boolean requestDelete = true;
-
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @TableField(fill = FieldFill.INSERT_UPDATE)
- private Date updateTime;
+// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+// @TableField(fill = FieldFill.INSERT_UPDATE)
+// private Date updateTime;
}
--
Gitblit v1.9.3