issue #63
All checks were successful
Test CI / build (push) Successful in 1m16s

- 일정 목록 조회 기능 구현 중
- 일정 상세 조회 기능 구현 필요
This commit is contained in:
geonhee-min
2025-12-10 17:15:15 +09:00
parent bb79557876
commit 34c33202c6
4 changed files with 61 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
import { IsArray, IsDateString, IsString } from "@nestjs/class-validator";
export class ListRequestDto {
@IsDateString()
startDate?: string;
@IsDateString()
endDate?: string;
@IsArray()
styleList?: string[];
@IsArray()
typeList?: string[];
@IsString()
status?: 'yet' | 'completed' | undefined;
@IsString()
name?: string;
}