add permission profile
This commit is contained in:
parent
dc9ac66896
commit
af3e0abd2a
5 changed files with 725 additions and 38 deletions
27
src/entities/PermissionProfile.ts
Normal file
27
src/entities/PermissionProfile.ts
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
import { Entity, Column, ManyToOne, JoinColumn } from "typeorm";
|
||||
import { EntityBase } from "./base/Base";
|
||||
import { OrgRoot } from "./OrgRoot";
|
||||
import { Profile } from "./Profile";
|
||||
|
||||
@Entity("permissionProfile")
|
||||
export class PermissionProfile extends EntityBase {
|
||||
@Column({
|
||||
length: 40,
|
||||
comment: "คีย์นอก(FK)ของตาราง orgRoot",
|
||||
})
|
||||
orgRootId: string;
|
||||
|
||||
@Column({
|
||||
length: 40,
|
||||
comment: "คีย์นอก(FK)ของตาราง profile",
|
||||
})
|
||||
profileId: string;
|
||||
|
||||
@ManyToOne(() => OrgRoot, (orgRoot) => orgRoot.permissionProfileRoots)
|
||||
@JoinColumn({ name: "orgRootId" })
|
||||
orgRootTree: OrgRoot;
|
||||
|
||||
@ManyToOne(() => Profile, (profile) => profile.permissionProfiles)
|
||||
@JoinColumn({ name: "profileId" })
|
||||
profileTree: Profile;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue