no message

This commit is contained in:
Kittapath 2024-03-04 09:43:02 +07:00
parent 432c3f6851
commit 5f97ab1ac7
3 changed files with 10 additions and 9 deletions

View file

@ -79,25 +79,25 @@ export class PosDict extends EntityBase {
export class CreatePosDict {
@Column()
posDictName: string;
posDictName: string | null;
@Column()
posDictField: string;
posDictField: string | null;
@Column("uuid")
posTypeId: string;
posTypeId: string | null;
@Column("uuid")
posLevelId: string;
posLevelId: string | null;
@Column()
posExecutiveId?: string;
posExecutiveId?: string | null;
@Column()
posDictExecutiveField: string;
posDictExecutiveField: string | null;
@Column()
posDictArea: string;
posDictArea: string | null;
@Column()
isSpecial: boolean;