new linker

This commit is contained in:
2025-10-31 11:06:04 +07:00
parent f6a9b017cc
commit 911bc26687

View File

@ -4,6 +4,7 @@ import { BranchCode, StatusDocument, TypeCredential, TypeDocument, TypePriority
import { EarchiveDocLogs } from "./earchive_doclogs";
import { EarchiveReceiver } from "./earchive_receiver";
import { EarchiveApproval } from "./earchive_approval";
import { EarchiveLink } from "./earchive_link";
@Entity("earchive_doc", { schema: "earchive" })
export class EarchiveDoc {
@ -96,6 +97,9 @@ export class EarchiveDoc {
@OneToMany(() => EarchiveReceiver, (r) => r.doc)
receivers: EarchiveReceiver[];
@OneToMany(() => EarchiveLink, (r) => r.doc)
link: EarchiveLink[];
@OneToMany(() => EarchiveApproval, (r) => r.doc)
approval: EarchiveApproval[];