fixing earchive eksternal

This commit is contained in:
2025-11-12 16:42:11 +07:00
parent d1bd4d54ad
commit 6a286d197c
2 changed files with 27 additions and 0 deletions

View File

@ -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;

View File

@ -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;