260321:1700 Correct Coresspondence / Doing RFA
This commit is contained in:
@@ -28,6 +28,15 @@ export interface CreateCorrespondenceDto {
|
||||
/** กำหนดวันตอบกลับ (ISO Date String) */
|
||||
dueDate?: string;
|
||||
|
||||
/** วันที่เอกสาร (ISO Date String) */
|
||||
documentDate?: string;
|
||||
|
||||
/** วันที่ออกเอกสาร (ISO Date String) */
|
||||
issuedDate?: string;
|
||||
|
||||
/** วันที่รับเอกสาร (ISO Date String) */
|
||||
receivedDate?: string;
|
||||
|
||||
/** ข้อมูล JSON เฉพาะประเภท (เช่น RFI question, RFA details) */
|
||||
details?: Record<string, unknown>;
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
// File: src/types/dto/rfa/rfa.dto.ts
|
||||
import type { RFAItem } from '@/types/rfa';
|
||||
|
||||
// --- Create ---
|
||||
export interface CreateRfaDto {
|
||||
@@ -36,11 +35,11 @@ export interface CreateRfaDto {
|
||||
/** กำหนดวันตอบกลับ (ISO Date String) */
|
||||
dueDate?: string;
|
||||
|
||||
/** รายการ ID ของ Shop Drawings ที่แนบมา (ถ้ามี) */
|
||||
shopDrawingRevisionIds?: number[];
|
||||
/** รายการ ID หรือ UUID ของ Shop Drawing Revisions ที่แนบมา (ถ้ามี) */
|
||||
shopDrawingRevisionIds?: Array<number | string>;
|
||||
|
||||
/** รายการ Items ของ RFA */
|
||||
items?: RFAItem[];
|
||||
/** รายการ ID หรือ UUID ของ As-Built Drawing Revisions ที่แนบมา (ถ้ามี) */
|
||||
asBuiltDrawingRevisionIds?: Array<number | string>;
|
||||
}
|
||||
|
||||
// --- Update (Partial) ---
|
||||
|
||||
Reference in New Issue
Block a user