fix
This commit is contained in:
parent
2622a0ca51
commit
e28e649399
1 changed files with 4 additions and 4 deletions
|
|
@ -157,9 +157,9 @@ export class CreateKpiUserRole {
|
|||
@Column()
|
||||
documentInfoEvidence: string;
|
||||
@Column({ nullable: true })
|
||||
startDate: Date;
|
||||
startDate?: Date;
|
||||
@Column({ nullable: true })
|
||||
endDate: Date;
|
||||
endDate?: Date;
|
||||
@Column()
|
||||
achievement1: string;
|
||||
@Column()
|
||||
|
|
@ -190,9 +190,9 @@ export class UpdateKpiUserRole {
|
|||
@Column()
|
||||
documentInfoEvidence: string;
|
||||
@Column({ nullable: true })
|
||||
startDate: Date;
|
||||
startDate?: Date;
|
||||
@Column({ nullable: true })
|
||||
endDate: Date;
|
||||
endDate?: Date;
|
||||
@Column()
|
||||
achievement1: string;
|
||||
@Column()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue