fix bug
This commit is contained in:
parent
f5c5d21a3e
commit
e601dfccab
3 changed files with 34 additions and 2 deletions
|
|
@ -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>;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue