This commit is contained in:
Bright 2024-01-25 11:09:54 +07:00
parent d7926538ae
commit b8d2283698
2 changed files with 98 additions and 16 deletions

View file

@ -1,11 +1,10 @@
import { Entity, Column, ManyToOne, JoinColumn, OneToOne, OneToMany } from "typeorm";
import { Entity, Column, ManyToOne, JoinColumn, OneToOne, OneToMany, PrimaryGeneratedColumn } from "typeorm";
import { EntityBase } from "./base/Base";
import { OrgRoot } from "./OrgRoot";
import { OrgChild2 } from "./OrgChild2";
import { OrgChild3 } from "./OrgChild3";
import { OrgChild4 } from "./OrgChild4";
// ENUM orgChild1Rank
enum OrgChild1Rank {
DEPARTMENT = "department",
OFFICE = "office",
@ -14,12 +13,6 @@ enum OrgChild1Rank {
}
@Entity("orgChild1")
export class OrgChild1 extends EntityBase {
// @Column({
// comment: "",
// length: 40,
// default: "00000000-0000-0000-0000-000000000000",
// })
// orgChild1Id: string;
@Column({
nullable: true,
@ -50,7 +43,6 @@ export class OrgChild1 extends EntityBase {
comment: "ระดับส่วนราชการ",
type: "enum",
enum: OrgChild1Rank,
// default: OrgChild1Rank.DEPARTMENT,
})
orgChild1Rank: OrgChild1Rank;
@ -83,7 +75,7 @@ export class OrgChild1 extends EntityBase {
@Column({
nullable: true,
comment: "สถานะของหน่วยงาน", //ปกติ = 1 , ยุกเลิก = 0
comment: "สถานะของหน่วยงาน",
default: true
})
orgChild1IsNormal: boolean;
@ -98,15 +90,43 @@ export class OrgChild1 extends EntityBase {
@JoinColumn({ name: "orgRootId" })
orgRoot: OrgRoot;
//child table 2,3,4
@OneToMany(() => OrgChild2, orgChild2 => orgChild2.orgChild1)
orgChild2s: OrgChild2[];
// @OneToMany(() => OrgChild3, orgChild3 => orgChild3.orgChild1)
// orgChild3s: OrgChild3[];
}
// @OneToMany(() => OrgChild4, orgChild4 => orgChild4.orgChild1)
// orgChild4s: OrgChild4[];
export class CreateOrgChild1 {
@Column()
orgChild1Name: string;
@Column()
orgChild1ShortName: string;
@Column()
orgChild1Code: string;
@Column()
orgChild1Rank: string;
@Column()
orgChild1Order: number;
@Column()
orgChild1PhoneEx: string;
@Column()
orgChild1PhoneIn: string;
@Column()
orgChild1Fax: string;
@Column()
orgChild1IsNormal: boolean;
@PrimaryGeneratedColumn('uuid')
orgRootId: string;
}
export type UpdateOrgChild1 = Partial<OrgChild1>;