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

@ -74,9 +74,24 @@ export class EarchiveDoc {
@Column({ name: 'attachlink', nullable: true }) @Column({ name: 'attachlink', nullable: true })
attachlink: string; 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 }) @Column({ type: 'text', nullable: true })
content: string; content: string;
@Column({ type: 'text', nullable: true })
contentdetail: string;
@Column({ type: 'text', nullable: true })
contentclosed: string;
@Column({ type: 'int', nullable: true }) @Column({ type: 'int', nullable: true })
statusdoc: StatusDocument; statusdoc: StatusDocument;

View File

@ -26,12 +26,24 @@ export class EarchiveLink {
@Column({ name: 'description', nullable: true }) @Column({ name: 'description', nullable: true })
description: string; description: string;
@Column({ name: 'location', nullable: true })
location: string;
@Column({ name: 'timezone', nullable: true })
timezone: string;
@Column({ name: 'startdate', nullable: true }) @Column({ name: 'startdate', nullable: true })
startdate: Date; startdate: Date;
@Column({ name: 'enddate', nullable: true }) @Column({ name: 'enddate', nullable: true })
enddate: Date; enddate: Date;
@Column({ name: 'timestart', nullable: true })
timestart: string;
@Column({ name: 'timeend', nullable: true })
timeend: string;
@Column({ type: 'int', nullable: true , default : 0}) @Column({ type: 'int', nullable: true , default : 0})
limit: Number; limit: Number;