add tables
This commit is contained in:
parent
277bd39510
commit
a46c942e1c
4 changed files with 158 additions and 2 deletions
89
src/entities/ProfileEmployeeInformationHistory.ts
Normal file
89
src/entities/ProfileEmployeeInformationHistory.ts
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
import { Entity, Column, ManyToOne, JoinColumn } from "typeorm";
|
||||
import { EntityBase } from "./base/Base";
|
||||
import { ProfileEmployee } from "./ProfileEmployee";
|
||||
|
||||
@Entity("profileEmployeeInformationHistory")
|
||||
export class ProfileEmployeeInformationHistory extends EntityBase {
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "กลุ่มงาน",
|
||||
default: null,
|
||||
})
|
||||
positionEmployeeGroupId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "สายงาน",
|
||||
default: null,
|
||||
})
|
||||
positionEmployeeLineId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อตำแหน่งทางสายงาน",
|
||||
default: null,
|
||||
})
|
||||
positionEmployeePositionId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "สังกัด",
|
||||
default: null,
|
||||
})
|
||||
employeeOc: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ประเภทบุคคล",
|
||||
default: null,
|
||||
})
|
||||
employeeTypeIndividual: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ค่าจ้าง",
|
||||
default: null,
|
||||
})
|
||||
employeeWage: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เงินเพิ่มการครองชีพชั่วคราว",
|
||||
default: null,
|
||||
})
|
||||
employeeMoneyIncrease: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เงินช่วยเหลือการครองชีพชั่วคราว",
|
||||
default: null,
|
||||
})
|
||||
employeeMoneyAllowance: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เงินสมทบประกันสังคม(ลูกจ้าง)",
|
||||
default: null,
|
||||
})
|
||||
employeeMoneyEmployee: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เงินสมทบประกันสังคม(นายจ้าง)",
|
||||
default: null,
|
||||
})
|
||||
employeeMoneyEmployer: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 40,
|
||||
comment: "คีย์นอก(FK)ของตาราง ProfileEmployee",
|
||||
default: null,
|
||||
})
|
||||
profileEmployeeId: string;
|
||||
|
||||
@ManyToOne(() => ProfileEmployee, (profileEmp) => profileEmp.information_histories)
|
||||
@JoinColumn({ name: "profileEmployeeId" })
|
||||
profileEmployeeInformation: ProfileEmployee;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue