feat: add college archive fields

This commit is contained in:
2026-07-21 15:35:35 +08:00
parent 2626d5f460
commit 37ef6f9dd7
11 changed files with 95 additions and 6 deletions

View File

@@ -4,6 +4,8 @@ import { IsOptional, IsString, IsNumber, IsDateString, IsNotEmpty, Min } from 'c
export class UpsertProfileDto {
@IsOptional() @IsString() targetCollege?: string;
@IsOptional() @IsString() targetMajor?: string;
@IsOptional() @IsString() collegeSchool?: string;
@IsOptional() @IsString() collegeMajor?: string;
@IsOptional() @IsString() subjectDirection?: string;
@IsOptional() @IsString() grade?: string;
@IsOptional() @IsDateString() profileDate?: string;