fixing disposisi

This commit is contained in:
2025-11-08 08:33:46 +07:00
parent 27c78873ae
commit 6b77859b25

View File

@ -14,14 +14,23 @@ export class EarchiveDisposisi {
@JoinColumn({ name: 'docid' }) @JoinColumn({ name: 'docid' })
doc: EarchiveDoc; doc: EarchiveDoc;
@Column({ name: 'uuiddisposisi', type: 'uuid', nullable: true }) @Column({ name: 'fromuuid', type: 'uuid', nullable: true })
uuiddisposisi: string; fromuuid: string;
@Column({ name: 'nik', nullable: true }) @Column({ name: 'fromnik', nullable: true })
nik: string; fromnik: string;
@Column({ name: 'employeename', nullable: true }) @Column({ name: 'fromemployeename', nullable: true })
employeename: string; fromemployeename: string;
@Column({ name: 'touuid', type: 'uuid', nullable: true })
touuid: string;
@Column({ name: 'tonik', nullable: true })
tonik: string;
@Column({ name: 'toemployeename', nullable: true })
toemployeename: string;
@Column() @Column()
@CreateDateColumn() @CreateDateColumn()