Auth: WeChat login, JWT, roles guard (24 tests passing) User: profile CRUD, training stats with month/total calculations Studio: config management with auto-default creation
12 lines
186 B
TypeScript
12 lines
186 B
TypeScript
import { IsString, IsNotEmpty } from 'class-validator'
|
|
|
|
export class BindPhoneDto {
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
encryptedData!: string
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
iv!: string
|
|
}
|