用户信息变更

This commit is contained in:
2025-11-26 12:03:34 +08:00
parent 8ff849d050
commit 8d8ecf8763
15 changed files with 203 additions and 88 deletions

View File

@@ -29,6 +29,9 @@ export interface SysUser extends BaseDTO {
export interface SysUserInfo extends BaseDTO {
/** 用户ID */
userID?: string;
/** 用户名迁移到userInfo中便于统一展示 */
username?: string;
studentId?: string;
/** 真实姓名 */
realName?: string;
/** 昵称 */
@@ -51,6 +54,7 @@ export interface SysUserInfo extends BaseDTO {
export interface UserVO extends BaseDTO {
/** 用户ID兼容字段 */
userID?: string;
studentId?: string;
/** 用户名 */
username?: string;
/** 邮箱 */