import { Entity, Column, ManyToOne, JoinColumn, OneToMany, PrimaryGeneratedColumn } from "typeorm"; import { EntityBase } from "./base/Base"; import { OrgRoot } from "./OrgRoot"; import { OrgChild2 } from "./OrgChild2"; import { OrgRevision } from "./OrgRevision"; import { OrgChild3 } from "./OrgChild3"; import { OrgChild4 } from "./OrgChild4"; import { PosMaster } from "./PosMaster"; enum OrgChild1Rank { DEPARTMENT = "DEPARTMENT", OFFICE = "OFFICE", DIVISION = "DIVISION", SECTION = "SECTION", } @Entity("orgChild1") export class OrgChild1 extends EntityBase { @Column({ nullable: true, comment: "ชื่อส่วนราชการ", length: 255, default: null, }) orgChild1Name: string; @Column({ nullable: true, comment: "ชื่อย่อส่วนราชการ", length: 16, default: null, }) orgChild1ShortName: string; @Column({ nullable: true, comment: "รหัสส่วนราชการ", length: 8, default: null, }) orgChild1Code: string; @Column({ nullable: true, comment: "ระดับส่วนราชการ", type: "enum", enum: OrgChild1Rank, default: null, }) orgChild1Rank: OrgChild1Rank; @Column({ nullable: true, comment: "ระดับส่วนราชการsub", default: null, }) orgChild1RankSub: string; @Column({ nullable: true, comment: "ลำดับที่ของส่วนราชการภายใน Child เดียวกัน", default: null, }) orgChild1Order: number; @Column({ nullable: true, length: 64, comment: "หมายเลขโทรศัพท์ที่ติดต่อจากภายนอก", default: null, }) orgChild1PhoneEx: string; @Column({ nullable: true, length: 64, comment: "หมายเลขโทรศัพท์ที่ติดต่อจากภายใน", default: null, }) orgChild1PhoneIn: string; @Column({ nullable: true, length: 64, comment: "หมายเลขโทรสาร", default: null, }) orgChild1Fax: string; @Column({ length: 40, comment: "คีย์นอก(FK)ของตาราง orgRoot", }) orgRootId: string; @Column({ length: 40, comment: "คีย์นอก(FK)ของตาราง orgRevision", }) orgRevisionId: string; @Column({ nullable: true, length: 40, comment: "รหัส DNA ใช้ในกรณีที่มีการทำสำเนาโครงสร้าง โครงสร้างใหม่ที่ทำสำเนากับโครงสร้างเก่าจะต้องมี DNA เดียวกัน เพื่อให้ track ประวัติการแก้ไขโครงสร้างย้อนหลังได้", default: null, }) ancestorDNA: string; @Column({ nullable: true, length: 255, comment: "หน้าที่ความรับผิดชอบ", default: null, }) responsibility: string; @ManyToOne(() => OrgRevision, (orgRevision) => orgRevision.orgChild1s) @JoinColumn({ name: "orgRevisionId" }) orgRevision: OrgRevision; @ManyToOne(() => OrgRoot, (orgRoot) => orgRoot.orgChild1s) @JoinColumn({ name: "orgRootId" }) orgRoot: OrgRoot; @OneToMany(() => OrgChild2, (orgChild2) => orgChild2.orgChild1) orgChild2s: OrgChild2[]; @OneToMany(() => OrgChild3, (orgChild3) => orgChild3.orgChild1) orgChild3s: OrgChild3[]; @OneToMany(() => OrgChild4, (orgChild4) => orgChild4.orgChild1) orgChild4s: OrgChild4[]; @OneToMany(() => PosMaster, (posMaster) => posMaster.orgChild1) posMasters: PosMaster[]; } export class CreateOrgChild1 { @Column() orgChild1Name: string; @Column() orgChild1ShortName: string; @Column() orgChild1Code?: string; @Column() orgChild1Rank: string; @Column() orgChild1RankSub?: string; @Column() orgChild1PhoneEx?: string; @Column() orgChild1PhoneIn?: string; @Column() orgChild1Fax?: string; @Column("uuid") orgRootId: string; @Column() responsibility?: string; } export type UpdateOrgChild1 = Partial & { orgChild1Rank?: OrgChild1Rank };