251213:1509 Docunment Number Businee Rule not correct
Some checks failed
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled

This commit is contained in:
admin
2025-12-13 15:09:01 +07:00
parent d964546c8d
commit ec35521258
64 changed files with 11956 additions and 223 deletions

View File

@@ -35,7 +35,22 @@ export class CreateRfaDto {
})
@IsString()
@IsNotEmpty()
title!: string;
subject!: string;
@ApiProperty({ description: 'Body', required: false })
@IsString()
@IsOptional()
body?: string;
@ApiProperty({ description: 'Remarks', required: false })
@IsString()
@IsOptional()
remarks?: string;
@ApiProperty({ description: 'Due Date', required: false })
@IsDateString()
@IsOptional()
dueDate?: string;
@ApiProperty({ description: 'รายละเอียดเพิ่มเติม', required: false })
@IsString()