localhost_oa_based/src/modules/auth/dto/account.dto.ts

73 lines
1.5 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { ApiProperty, OmitType, PartialType, PickType } from '@nestjs/swagger';
import { IsEmail, IsOptional, IsString, Matches, MaxLength, MinLength } from 'class-validator';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { MenuEntity } from '~/modules/system/menu/menu.entity';
2024-02-28 08:32:35 +08:00
export class AccountUpdateDto {
@ApiProperty({ description: '用户呢称' })
@IsString()
@IsOptional()
2024-02-28 17:02:46 +08:00
nickname: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '用户邮箱' })
@IsEmail()
2024-02-28 17:02:46 +08:00
email: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '用户QQ' })
@IsOptional()
@IsString()
@Matches(/^[0-9]+$/)
@MinLength(5)
@MaxLength(11)
2024-02-28 17:02:46 +08:00
qq: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '用户手机号' })
@IsOptional()
@IsString()
2024-02-28 17:02:46 +08:00
phone: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '用户头像' })
@IsOptional()
@IsString()
2024-02-28 17:02:46 +08:00
avatar: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '用户备注' })
@IsOptional()
@IsString()
2024-02-28 17:02:46 +08:00
remark: string;
2024-02-28 08:32:35 +08:00
}
export class ResetPasswordDto {
@ApiProperty({ description: '临时token', example: 'uuid' })
@IsString()
2024-02-28 17:02:46 +08:00
accessToken: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '密码', example: 'a123456' })
@IsString()
@Matches(/^\S*(?=\S{6,})(?=\S*\d)(?=\S*[A-Za-z])\S*$/)
@MinLength(6)
2024-02-28 17:02:46 +08:00
password: string;
2024-02-28 08:32:35 +08:00
}
2024-02-28 17:02:46 +08:00
export class MenuMeta extends PartialType(
OmitType(MenuEntity, [
'parentId',
'createdAt',
'updatedAt',
'id',
'roles',
'path',
2024-02-29 09:29:03 +08:00
'name'
2024-02-28 17:02:46 +08:00
] as const)
) {
title: string;
2024-02-28 08:32:35 +08:00
}
2024-02-28 17:02:46 +08:00
export class AccountMenus extends PickType(MenuEntity, [
'id',
'path',
'name',
2024-02-29 09:29:03 +08:00
'component'
2024-02-28 17:02:46 +08:00
] as const) {
meta: MenuMeta;
2024-02-28 08:32:35 +08:00
}