diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-12-01 00:58:23 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-12-01 00:58:23 +0000 |
| commit | 8440ac29c7dcbef992039678ecc0fabff2fd04ec (patch) | |
| tree | 59092b8dcd22135009bf70d5863ffde444e5bed2 /lib/sedp/sync-form.ts | |
| parent | 748f68bb7b5d02450664651ae5025c9a38fb71a5 (diff) | |
(대표님) S-EDP 관련 대표님 작업사항
Diffstat (limited to 'lib/sedp/sync-form.ts')
| -rw-r--r-- | lib/sedp/sync-form.ts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/sedp/sync-form.ts b/lib/sedp/sync-form.ts index 904d27ba..a6d473ad 100644 --- a/lib/sedp/sync-form.ts +++ b/lib/sedp/sync-form.ts @@ -94,7 +94,7 @@ interface Register { SEQ: number; CMPLX_YN: boolean; CMPL_SETT: any | null; - MAP_ATT: any[]; + MAP_ATT: MapAttribute2[]; MAP_CLS_ID: string[]; MAP_OPER: any | null; LNK_ATT: LinkAttribute[]; @@ -157,6 +157,13 @@ interface MapAttribute { INOUT: string | null; } +interface MapAttribute2 { + ATT_ID: string; + VALUE: string; + IS_PARA: boolean; + OPER: string | null; +} + interface Attribute { PROJ_NO: string; ATT_ID: string; |
