เพิ่มฟิว isDirecter isOfficer

This commit is contained in:
AnandaTon 2024-06-12 14:41:16 +07:00
parent 2cd35849b2
commit bd9dee6da2
4 changed files with 22 additions and 0 deletions

View file

@ -237,6 +237,12 @@ export class CreateEmployeePosMaster {
@Column()
reason: string | null;
@Column()
isDirector: boolean;
@Column()
isOfficer: boolean;
}
export type UpdateEmployeePosMaster = Partial<EmployeePosMaster>;