diff --git a/src/entities/PosLevel.ts b/src/entities/PosLevel.ts index e0a93323..7aa39537 100644 --- a/src/entities/PosLevel.ts +++ b/src/entities/PosLevel.ts @@ -3,6 +3,9 @@ import { EntityBase } from "./base/Base"; import { PosType } from "./PosType"; import { Position } from "./Position"; import { PosDict } from "./PosDict"; +import { Profile } from "./Profile"; +import { profile } from "console"; + enum PosLevelAuthority { HEAD = "HEAD", DEPUTY = "DEPUTY", @@ -50,6 +53,9 @@ export class PosLevel extends EntityBase { @OneToMany(() => PosDict, (posDict) => posDict.posLevel) posDicts: PosDict[]; + + @OneToMany(() => Profile, (profile) => profile.posLevelsId) + posLevelId: Profile; } export class CreatePosLevel { diff --git a/src/entities/PosType.ts b/src/entities/PosType.ts index ed6d8610..3dd7934a 100644 --- a/src/entities/PosType.ts +++ b/src/entities/PosType.ts @@ -3,6 +3,7 @@ import { EntityBase } from "./base/Base"; import { PosLevel } from "./PosLevel"; import { Position } from "./Position"; import { PosDict } from "./PosDict"; +import { Profile } from "./Profile"; @Entity("posType") export class PosType extends EntityBase { @@ -30,6 +31,9 @@ export class PosType extends EntityBase { @OneToMany(() => PosDict, (posDict) => posDict.posType) posDicts: PosDict[]; + + @OneToMany(() => Profile, (profile) => profile.posTypesId) + posTypeId: Profile; } export class CreatePosType { diff --git a/src/entities/Profile.ts b/src/entities/Profile.ts index 9d7e3a28..0fc9e851 100644 --- a/src/entities/Profile.ts +++ b/src/entities/Profile.ts @@ -1,6 +1,8 @@ -import { Entity, Column, OneToMany, OneToOne, JoinColumn, ManyToMany } from "typeorm"; +import { Entity, Column, OneToMany, OneToOne, JoinColumn, ManyToMany, ManyToOne } from "typeorm"; import { EntityBase } from "./base/Base"; import { PosMaster } from "./PosMaster"; +import { PosLevel } from "./PosLevel"; +import { PosType } from "./PosType"; @Entity("profile") export class Profile extends EntityBase { @@ -36,6 +38,26 @@ export class Profile extends EntityBase { }) citizenId: string; + @Column({ + nullable: true, + comment: "ตำแหน่ง", + default: null, + length: 255, + }) + position: string; + + @Column({ + length: 40, + comment: "ไอดีระดับตำแหน่ง", + }) + posLevelId: string; + + @Column({ + length: 40, + comment: "ไอดีประเภทตำแหน่", + }) + posTypeId: string; + // @Column({ // nullable: true, // length: 40, @@ -61,6 +83,15 @@ export class Profile extends EntityBase { @OneToMany(() => PosMaster, (posMaster) => posMaster.next_holder) next_holders: PosMaster[]; + + @ManyToOne(() => PosLevel, (posLevel) => posLevel.posLevelId) + @JoinColumn({ name: "posLevelId" }) + posLevelsId: PosLevel; + + @ManyToOne(() => PosType, (posType) => posType.posTypeId) + @JoinColumn({ name: "posTypeId" }) + posTypesId: PosType; + } export class CreateProfile {