คำนวนเงินเดือนย้อนหลัง

This commit is contained in:
Kittapath 2024-02-28 17:58:39 +07:00
parent bbe3ee2906
commit 97551dc096
4 changed files with 215 additions and 65 deletions

View file

@ -235,34 +235,39 @@ export class SalaryProfile extends EntityBase {
child4: string;
@Column({
nullable: true,
comment: "ผลการประเมิน",
default: false,
default: null,
})
result: boolean;
result: string;
@Column({
nullable: true,
comment: "ระยะเวลา",
default: false,
default: null,
})
duration: boolean;
duration: string;
@Column({
nullable: true,
comment: "การลงโทษ",
default: false,
default: null,
})
punish: boolean;
punish: string;
@Column({
nullable: true,
comment: "พักราชการ",
default: false,
default: null,
})
retired: boolean;
retired: string;
@Column({
nullable: true,
comment: "ขาดราชการ",
default: false,
default: null,
})
retired2: boolean;
retired2: string;
@ManyToOne(() => SalaryOrg, (salaryOrg) => salaryOrg.salaryProfiles)
@JoinColumn({ name: "salaryOrgId" })