From 01cd72a9faceb5a698cab8cbff5161d2cdcb57dc Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Fri, 5 Apr 2024 13:26:46 +0700 Subject: [PATCH] fix entity --- src/entities/DevelopmentScholarship.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/entities/DevelopmentScholarship.ts b/src/entities/DevelopmentScholarship.ts index 4cccefa..1c25403 100644 --- a/src/entities/DevelopmentScholarship.ts +++ b/src/entities/DevelopmentScholarship.ts @@ -452,8 +452,8 @@ export class CreateDevelopmentScholarship { educationalInstitution: string | null; startDate: Date | null; endDate: Date | null; - studyPlace: Date | null; - studyTopic: Date | null; + studyPlace: string | null; + studyTopic: string | null; studyStartDate: Date | null; studyEndDate: Date | null; studyCountry: string | null; @@ -504,8 +504,8 @@ export class UpdateDevelopmentScholarship { educationalInstitution: string | null; startDate: Date | null; endDate: Date | null; - studyPlace: Date | null; - studyTopic: Date | null; + studyPlace: string | null; + studyTopic: string | null; studyStartDate: Date | null; studyEndDate: Date | null; studyCountry: string | null;