add positionSalaryEditHistory entitiy
This commit is contained in:
parent
b01f074afe
commit
0ab8aa4f8b
3 changed files with 80 additions and 0 deletions
|
|
@ -48,6 +48,7 @@ import { RoleKeycloak } from "./RoleKeycloak";
|
|||
import { ProfileActposition } from "./ProfileActposition";
|
||||
import { ProfileAssistance } from "./ProfileAssistance";
|
||||
import { ProfileSalaryTemp } from "./ProfileSalaryTemp";
|
||||
import { PositionSalaryEditHistory } from "./PositionSalaryEditHistory";
|
||||
|
||||
@Entity("profile")
|
||||
export class Profile extends EntityBase {
|
||||
|
|
@ -518,6 +519,9 @@ export class Profile extends EntityBase {
|
|||
@OneToMany(() => StateUserComment, (v) => v.profile)
|
||||
stateUserComments: StateUserComment[];
|
||||
|
||||
@OneToMany(() => PositionSalaryEditHistory, (v) => v.profile)
|
||||
positionSalaryEditHistory: PositionSalaryEditHistory[];
|
||||
|
||||
@ManyToOne(() => PosLevel, (posLevel) => posLevel.profiles)
|
||||
@JoinColumn({ name: "posLevelId" })
|
||||
posLevel: PosLevel;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue