fix: 后端还有俩文件落下了

This commit is contained in:
2025-12-17 23:02:23 +08:00
parent e6fad12b30
commit ca527e997d
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { IsPhoneNumber } from "class-validator";
export class SendLoginSmsDto {
@IsPhoneNumber('CN', { message: '请输入有效的中国大陆手机号' })
phone: string;
}