wip: 🚧 个人中心添加修改密码、邮箱和手机号

This commit is contained in:
ray
2024-08-16 18:22:13 +08:00
parent f1cdb47766
commit 3399e5ecfa
2 changed files with 253 additions and 75 deletions

View File

@@ -276,6 +276,15 @@ export interface UserProfileVO {
/** 邮箱 */
email?: string;
/** 部门名称 */
deptName?: string;
/** 角色名称,多个使用英文逗号(,)分割 */
roleNames?: string;
/** 创建时间 */
createTime?: Date;
}
/** 个人中心用户信息表单 */
@@ -309,3 +318,19 @@ export interface PasswordChangeForm {
/** 新密码 */
newPassword?: string;
}
/** 手机绑定表单 */
export interface MobileBindingForm {
/** 新手机号 */
mobile?: string;
/** 验证码 */
code?: string;
}
/** 邮箱绑定表单 */
export interface EmailBindingForm {
/** 新邮箱 */
email?: string;
/** 验证码 */
code?: string;
}