no message
This commit is contained in:
parent
3d8b66d3cc
commit
25a7a8e1a8
4 changed files with 65 additions and 1 deletions
|
|
@ -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[];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue