edit entity
This commit is contained in:
parent
db72ff34ea
commit
910b603697
1 changed files with 32 additions and 2 deletions
|
|
@ -103,10 +103,40 @@ export class CreateSalary {
|
|||
endDate?: Date;
|
||||
|
||||
@Column()
|
||||
details?: string;
|
||||
details?: string | null;
|
||||
|
||||
@Column()
|
||||
isSpecial: boolean;
|
||||
}
|
||||
|
||||
export class UpdateSalary {
|
||||
|
||||
export type UpdateSalary = Partial<CreateSalary> ;
|
||||
@Column()
|
||||
salaryType: string;
|
||||
|
||||
@Column("uuid")
|
||||
posTypeId: string;
|
||||
|
||||
@Column("uuid")
|
||||
posLevelId: string;
|
||||
|
||||
@Column()
|
||||
isActive: boolean;
|
||||
|
||||
@Column()
|
||||
date?: Date;
|
||||
|
||||
@Column()
|
||||
startDate?: Date;
|
||||
|
||||
@Column()
|
||||
endDate?: Date;
|
||||
|
||||
@Column()
|
||||
details?: string | null;
|
||||
|
||||
@Column()
|
||||
isSpecial: boolean;
|
||||
}
|
||||
|
||||
// export type UpdateSalary = Partial<CreateSalary> ;
|
||||
Loading…
Add table
Add a link
Reference in a new issue