isReserve ว่างได้

This commit is contained in:
Kittapath 2024-03-07 16:17:33 +07:00
parent 93d4ffa7a6
commit 24744f7f32
3 changed files with 28 additions and 8 deletions

View file

@ -248,28 +248,28 @@ export class SalaryProfile extends EntityBase {
@Column({
nullable: true,
comment: "การลงโทษทางวินัย",
default: false,
default: null,
})
isPunish: boolean;
@Column({
nullable: true,
comment: "พักราชการ",
default: false,
default: null,
})
isSuspension: boolean;
@Column({
nullable: true,
comment: "ขาดราชการ",
default: false,
default: null,
})
isAbsent: boolean;
@Column({
nullable: true,
comment: "วันลา",
default: false,
default: null,
})
isLeave: boolean;