no message
This commit is contained in:
parent
222a2a5b6b
commit
8acd2a97c7
4 changed files with 140 additions and 22 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue