UNPKG

create-chuntianxiaozhu

Version:

春天小猪模板工具

9 lines (7 loc) 184 B
import { IsEmail, IsNotEmpty, IsString } from 'class-validator'; export class CodeDto { @IsNotEmpty({ message: '邮箱不能为空' }) @IsString() @IsEmail() email: string; }