Merge branch 'develop' of github.com:Frappet/bma-ehr-organization into develop

This commit is contained in:
Kittapath 2024-02-20 17:12:28 +07:00
commit 8fe7d295fe
6 changed files with 61 additions and 3 deletions

View file

@ -58,6 +58,12 @@ export class PosDict extends EntityBase {
})
posDictArea: string;
@Column({
comment: "ฉ",
default: false,
})
isSpecial: boolean;
@ManyToOne(() => PosExecutive, (posExecutive) => posExecutive)
@JoinColumn({ name: "posExecutiveId" })
posExecutive: PosExecutive;
@ -92,6 +98,9 @@ export class CreatePosDict {
@Column()
posDictArea: string | null;
@Column()
isSpecial: boolean;
}
export type UpdatePosDict = Partial<CreatePosDict>;