fixing earchive disposisi
This commit is contained in:
@ -17,8 +17,11 @@ export class EarchiveDisposisi {
|
||||
@Column({ name: 'uuiddisposisi', type: 'uuid', nullable: true })
|
||||
uuiddisposisi: string;
|
||||
|
||||
@Column({ name: 'namedisposisi', nullable: true })
|
||||
namedisposisi: string;
|
||||
@Column({ name: 'nik', nullable: true })
|
||||
nik: string;
|
||||
|
||||
@Column({ name: 'employeename', nullable: true })
|
||||
employeename: string;
|
||||
|
||||
@Column()
|
||||
@CreateDateColumn()
|
||||
|
||||
@ -5,6 +5,7 @@ import { EarchiveDocLogs } from "./earchive_doclogs";
|
||||
import { EarchiveReceiver } from "./earchive_receiver";
|
||||
import { EarchiveApproval } from "./earchive_approval";
|
||||
import { EarchiveLink } from "./earchive_link";
|
||||
import { EarchiveDisposisi } from "./earchive_disposisi";
|
||||
|
||||
@Entity("earchive_doc", { schema: "earchive" })
|
||||
export class EarchiveDoc {
|
||||
@ -102,6 +103,9 @@ export class EarchiveDoc {
|
||||
|
||||
@OneToMany(() => EarchiveApproval, (r) => r.doc)
|
||||
approval: EarchiveApproval[];
|
||||
|
||||
@OneToMany(() => EarchiveDisposisi, (r) => r.doc)
|
||||
disposisi: EarchiveDisposisi[];
|
||||
|
||||
@Column()
|
||||
@CreateDateColumn()
|
||||
|
||||
Reference in New Issue
Block a user