no message
This commit is contained in:
parent
432c3f6851
commit
5f97ab1ac7
3 changed files with 10 additions and 9 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue