no message

This commit is contained in:
kittapath 2024-10-17 19:26:33 +07:00
parent 3d8b66d3cc
commit 25a7a8e1a8
4 changed files with 65 additions and 1 deletions

View file

@ -141,6 +141,20 @@ export class ProfileSalary extends EntityBase {
})
order: number;
@Column({
comment: "วันที่",
type: "datetime",
nullable: true,
})
dateGovernment: Date;
@Column({
nullable: true,
comment: "เข้ารับราชการ",
default: null,
})
isGovernment: boolean;
@OneToMany(() => ProfileSalaryHistory, (profileSalaryHistory) => profileSalaryHistory.histories)
profileSalaryHistories: ProfileSalaryHistory[];