This commit is contained in:
AdisakKanthawilang 2024-01-30 16:39:22 +07:00
parent f5c5d21a3e
commit e601dfccab
3 changed files with 34 additions and 2 deletions

View file

@ -57,4 +57,31 @@ export class PosDict extends EntityBase {
default: "string",
})
posDictArea: string;
}
export class CreatePosDict {
@Column()
posDictName: string;
@Column()
posDictField: string;
@Column()
posTypeId: string;
@Column()
posLevelId: string;
@Column()
posExecutiveId: string;
@Column()
posDictExecutiveField: string;
@Column()
posDictArea: string;
}
export type UpdatePosDict = Partial<CreatePosDict>;