new linker
This commit is contained in:
@ -4,6 +4,7 @@ import { BranchCode, StatusDocument, TypeCredential, TypeDocument, TypePriority
|
|||||||
import { EarchiveDocLogs } from "./earchive_doclogs";
|
import { EarchiveDocLogs } from "./earchive_doclogs";
|
||||||
import { EarchiveReceiver } from "./earchive_receiver";
|
import { EarchiveReceiver } from "./earchive_receiver";
|
||||||
import { EarchiveApproval } from "./earchive_approval";
|
import { EarchiveApproval } from "./earchive_approval";
|
||||||
|
import { EarchiveLink } from "./earchive_link";
|
||||||
|
|
||||||
@Entity("earchive_doc", { schema: "earchive" })
|
@Entity("earchive_doc", { schema: "earchive" })
|
||||||
export class EarchiveDoc {
|
export class EarchiveDoc {
|
||||||
@ -96,6 +97,9 @@ export class EarchiveDoc {
|
|||||||
@OneToMany(() => EarchiveReceiver, (r) => r.doc)
|
@OneToMany(() => EarchiveReceiver, (r) => r.doc)
|
||||||
receivers: EarchiveReceiver[];
|
receivers: EarchiveReceiver[];
|
||||||
|
|
||||||
|
@OneToMany(() => EarchiveLink, (r) => r.doc)
|
||||||
|
link: EarchiveLink[];
|
||||||
|
|
||||||
@OneToMany(() => EarchiveApproval, (r) => r.doc)
|
@OneToMany(() => EarchiveApproval, (r) => r.doc)
|
||||||
approval: EarchiveApproval[];
|
approval: EarchiveApproval[];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user