From 6a286d197cbb50a940738544444c1e21570cd1dc Mon Sep 17 00:00:00 2001 From: asansal Date: Wed, 12 Nov 2025 16:42:11 +0700 Subject: [PATCH] fixing earchive eksternal --- src/entity/earchive_doc.ts | 15 +++++++++++++++ src/entity/earchive_link.ts | 12 ++++++++++++ 2 files changed, 27 insertions(+) diff --git a/src/entity/earchive_doc.ts b/src/entity/earchive_doc.ts index d6a22ce..0d59bda 100644 --- a/src/entity/earchive_doc.ts +++ b/src/entity/earchive_doc.ts @@ -73,10 +73,25 @@ export class EarchiveDoc { @Column({ name: 'attachlink', nullable: true }) attachlink: string; + + @Column({ name: 'eksternalreceiver', nullable: true }) + eksternalreceiver: string; + + @Column({ name: 'eksternaltitle', nullable: true }) + eksternaltitle: string; + + @Column({ name: 'eksternalcompany', nullable: true }) + eksternalcompany: string; @Column({ type: 'text', nullable: true }) content: string; + @Column({ type: 'text', nullable: true }) + contentdetail: string; + + @Column({ type: 'text', nullable: true }) + contentclosed: string; + @Column({ type: 'int', nullable: true }) statusdoc: StatusDocument; diff --git a/src/entity/earchive_link.ts b/src/entity/earchive_link.ts index 6ae0d7d..cb67037 100644 --- a/src/entity/earchive_link.ts +++ b/src/entity/earchive_link.ts @@ -25,6 +25,12 @@ export class EarchiveLink { @Column({ name: 'description', nullable: true }) description: string; + + @Column({ name: 'location', nullable: true }) + location: string; + + @Column({ name: 'timezone', nullable: true }) + timezone: string; @Column({ name: 'startdate', nullable: true }) startdate: Date; @@ -32,6 +38,12 @@ export class EarchiveLink { @Column({ name: 'enddate', nullable: true }) enddate: Date; + @Column({ name: 'timestart', nullable: true }) + timestart: string; + + @Column({ name: 'timeend', nullable: true }) + timeend: string; + @Column({ type: 'int', nullable: true , default : 0}) limit: Number;