This commit is contained in:
AdisakKanthawilang 2024-02-20 17:09:11 +07:00
parent bb79b0a3d0
commit 7f01e34045
3 changed files with 11 additions and 11 deletions

View file

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