add dpis controller
This commit is contained in:
parent
497decefe4
commit
4852131651
74 changed files with 606 additions and 336 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import { Entity, Column, ManyToOne, JoinColumn } from "typeorm";
|
||||
import { EntityBase } from "./base/Base";
|
||||
import { ProfileEmployeeEmployment } from "./ProfileEmployeeEmployment"
|
||||
import { ProfileEmployeeEmployment } from "./ProfileEmployeeEmployment";
|
||||
|
||||
@Entity("profileEmployeeEmploymentHistory")
|
||||
export class ProfileEmployeeEmploymentHistory extends EntityBase {
|
||||
|
|
@ -18,7 +18,7 @@ export class ProfileEmployeeEmploymentHistory extends EntityBase {
|
|||
default: null,
|
||||
})
|
||||
command: string;
|
||||
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 40,
|
||||
|
|
@ -30,5 +30,4 @@ export class ProfileEmployeeEmploymentHistory extends EntityBase {
|
|||
@ManyToOne(() => ProfileEmployeeEmployment, (v) => v.histories)
|
||||
@JoinColumn({ name: "profileEmployeeEmploymentId" })
|
||||
profileEmployeeEmployment: ProfileEmployeeEmployment;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue