251126:1300 test run

This commit is contained in:
2025-11-26 14:38:24 +07:00
parent 0a0c6645d5
commit 304f7fddf6
12 changed files with 447 additions and 271 deletions

View File

@@ -1,3 +1,4 @@
// File: src/modules/rfa/dto/create-rfa.dto.ts
import {
IsInt,
IsString,
@@ -16,6 +17,10 @@ export class CreateRfaDto {
@IsNotEmpty()
rfaTypeId!: number;
@IsInt()
@IsOptional()
disciplineId?: number; // [Req 6B] สาขางาน (จำเป็นสำหรับการรันเลข RFA)
@IsString()
@IsNotEmpty()
title!: string;
@@ -40,4 +45,4 @@ export class CreateRfaDto {
@IsInt({ each: true })
@IsOptional()
shopDrawingRevisionIds?: number[]; // Shop Drawings ที่แนบมา
}
}