เพิ่มฟิว isretire
This commit is contained in:
parent
77b8ef8a7d
commit
8358ed8773
3 changed files with 37 additions and 9 deletions
|
|
@ -269,6 +269,13 @@ export class SalaryProfile extends EntityBase {
|
|||
})
|
||||
retired2: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เกษียญ",
|
||||
default: false,
|
||||
})
|
||||
isRetired: boolean;
|
||||
|
||||
@ManyToOne(() => SalaryOrg, (salaryOrg) => salaryOrg.salaryProfiles)
|
||||
@JoinColumn({ name: "salaryOrgId" })
|
||||
salaryOrg: SalaryOrg;
|
||||
|
|
@ -351,17 +358,20 @@ export class CreateSalaryProfile {
|
|||
child4: string | null;
|
||||
|
||||
@Column()
|
||||
result: boolean;
|
||||
result: string;
|
||||
|
||||
@Column()
|
||||
duration: boolean;
|
||||
duration: string;
|
||||
|
||||
@Column()
|
||||
punish: boolean;
|
||||
punish: string;
|
||||
|
||||
@Column()
|
||||
retired: boolean;
|
||||
retired: string;
|
||||
|
||||
@Column()
|
||||
retired2: boolean;
|
||||
retired2: string;
|
||||
|
||||
@Column()
|
||||
isRetired: boolean;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue