260318:1237 Fix UUID #4
Build and Deploy / deploy (push) Successful in 11m17s

This commit is contained in:
admin
2026-03-18 12:37:29 +07:00
parent 5d89079c2a
commit ba642e7e42
71 changed files with 533 additions and 319 deletions
+11 -3
View File
@@ -11,10 +11,18 @@ import {
} from 'class-validator';
export class CreateRfaDto {
@ApiProperty({ description: 'ID ของโครงการ', example: 1 })
@IsInt()
@ApiProperty({ description: 'ID or UUID ของโครงการ', example: 1 })
@IsNotEmpty()
projectId!: number;
projectId!: number | string;
@ApiProperty({ description: 'Contract ID or UUID', required: false })
@IsString()
@IsOptional()
contractId?: string;
@ApiProperty({ description: 'To Organization ID or UUID', required: false })
@IsOptional()
toOrganizationId?: number | string;
@ApiProperty({ description: 'ID ของประเภท RFA', example: 1 })
@IsInt()