แก้ฟิวvalidate
This commit is contained in:
parent
8339e6ce6d
commit
442f2f9a86
2 changed files with 21 additions and 16 deletions
|
|
@ -289,16 +289,16 @@ export class CreateSalaryProfile {
|
|||
citizenId: string;
|
||||
|
||||
@Column()
|
||||
posMasterNoPrefix: string;
|
||||
posMasterNoPrefix: string | null;
|
||||
|
||||
@Column()
|
||||
posMasterNo: number;
|
||||
|
||||
@Column()
|
||||
posMasterNoSuffix: string;
|
||||
posMasterNoSuffix: string | null;
|
||||
|
||||
@Column()
|
||||
orgShortName: string;
|
||||
orgShortName: string | null;
|
||||
|
||||
@Column()
|
||||
position: string;
|
||||
|
|
@ -310,40 +310,40 @@ export class CreateSalaryProfile {
|
|||
posLevel: string;
|
||||
|
||||
@Column()
|
||||
posExecutive: string;
|
||||
posExecutive: string | null;
|
||||
|
||||
@Column()
|
||||
amount: number;
|
||||
|
||||
@Column("uuid")
|
||||
rootId: string;
|
||||
rootId: string | null;
|
||||
|
||||
@Column()
|
||||
root: string;
|
||||
root: string | null;
|
||||
|
||||
@Column("uuid")
|
||||
child1Id: string;
|
||||
child1Id: string | null;
|
||||
|
||||
@Column()
|
||||
child1: string;
|
||||
child1: string | null;
|
||||
|
||||
@Column("uuid")
|
||||
child2Id: string;
|
||||
child2Id: string | null;
|
||||
|
||||
@Column()
|
||||
child2: string;
|
||||
child2: string | null;
|
||||
|
||||
@Column("uuid")
|
||||
child3Id: string;
|
||||
child3Id: string | null;
|
||||
|
||||
@Column()
|
||||
child3: string;
|
||||
child3: string | null;
|
||||
|
||||
@Column("uuid")
|
||||
child4Id: string;
|
||||
child4Id: string | null;
|
||||
|
||||
@Column()
|
||||
child4: string;
|
||||
child4: string | null;
|
||||
|
||||
@Column()
|
||||
isResult: boolean;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue