edit position

This commit is contained in:
AdisakKanthawilang 2024-02-20 18:04:13 +07:00
parent 7f01e34045
commit 352ced8053
2 changed files with 98 additions and 10 deletions

View file

@ -40,7 +40,7 @@ export class PosDict extends EntityBase {
comment: "ตำแหน่งทางการบริหาร",
default: null,
})
posExecutiveId: string | null;
posExecutiveId: string;
@Column({
nullable: true,
@ -84,20 +84,20 @@ export class CreatePosDict {
@Column()
posDictField: string;
@Column()
@Column("uuid")
posTypeId: string;
@Column()
@Column("uuid")
posLevelId: string;
@Column()
posExecutiveId: string | null;
posExecutiveId: string;
@Column()
posDictExecutiveField: string | null;
posDictExecutiveField: string;
@Column()
posDictArea: string | null;
posDictArea: string;
@Column()
isSpecial: boolean;