ฉ
This commit is contained in:
parent
a47f07110a
commit
bb79b0a3d0
3 changed files with 25 additions and 2 deletions
|
|
@ -58,6 +58,12 @@ export class PosDict extends EntityBase {
|
|||
})
|
||||
posDictArea: string;
|
||||
|
||||
@Column({
|
||||
comment: "ฉ",
|
||||
default: false,
|
||||
})
|
||||
isSpacial: boolean;
|
||||
|
||||
@ManyToOne(() => PosExecutive, (posExecutive) => posExecutive)
|
||||
@JoinColumn({ name: "posExecutiveId" })
|
||||
posExecutive: PosExecutive;
|
||||
|
|
@ -92,6 +98,9 @@ export class CreatePosDict {
|
|||
|
||||
@Column()
|
||||
posDictArea: string | null;
|
||||
|
||||
@Column()
|
||||
isSpacial: boolean;
|
||||
}
|
||||
|
||||
export type UpdatePosDict = Partial<CreatePosDict>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue