เพิ่มเครื่องราชฯ เพิ่มหน้ากรองลูกจ้างประจำก่อนประมวลผล
This commit is contained in:
parent
a462f2bddd
commit
c60beef7e3
13 changed files with 1745 additions and 1 deletions
|
|
@ -45,6 +45,8 @@ import { StateOperatorUser } from "./StateOperatorUser";
|
|||
import { StateUserComment } from "./StateUserComment";
|
||||
import { CommandSign } from "./CommandSign";
|
||||
import { RoleKeycloak } from "./RoleKeycloak";
|
||||
import { ProfileActposition } from "./ProfileActposition";
|
||||
import { ProfileAssistance } from "./ProfileAssistance";
|
||||
|
||||
@Entity("profile")
|
||||
export class Profile extends EntityBase {
|
||||
|
|
@ -393,6 +395,12 @@ export class Profile extends EntityBase {
|
|||
@OneToMany(() => ProfileAssessment, (profileAssessment) => profileAssessment.profile)
|
||||
profileAssessments: ProfileAssessment[];
|
||||
|
||||
@OneToMany(() => ProfileActposition, (profileActposition) => profileActposition.profile)
|
||||
profileActpositions: ProfileActposition[];
|
||||
|
||||
@OneToMany(() => ProfileAssistance, (profileAssistance) => profileAssistance.profile)
|
||||
profileAssistances: ProfileAssistance[];
|
||||
|
||||
@OneToMany(() => ProfileLeave, (profileLeave) => profileLeave.profile)
|
||||
profileLeaves: ProfileLeave[];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue