เพิ่มฟิว 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

@ -236,6 +236,12 @@ export class CreatePosMaster {
@Column()
reason: string | null;
@Column()
isDirector: boolean;
@Column()
isOfficer: boolean;
}
export type UpdatePosMaster = Partial<PosMaster>;