no message

This commit is contained in:
Kittapath 2024-03-18 11:11:14 +07:00
parent 222a2a5b6b
commit 8acd2a97c7
4 changed files with 140 additions and 22 deletions

View file

@ -103,6 +103,32 @@ export class CreatePosDict {
isSpecial: boolean;
}
export class CreatePosDictExe {
@Column()
posDictName: string | null;
@Column()
posDictField: string | null;
@Column("uuid")
posTypeId: string | null;
@Column("uuid")
posLevelId: string | null;
@Column()
posExecutive?: string;
@Column()
posDictExecutiveField: string | null;
@Column()
posDictArea: string | null;
@Column()
isSpecial: boolean;
}
export class UpdatePosDict {
@Column()
posDictName: string;