คำนวนโควต้าตอนเพิ่มคน
This commit is contained in:
parent
972539cc6b
commit
8c7ea64985
2 changed files with 28 additions and 14 deletions
|
|
@ -80,7 +80,6 @@ export class Salarys extends EntityBase {
|
|||
}
|
||||
|
||||
export class CreateSalary {
|
||||
|
||||
@Column()
|
||||
salaryType: string;
|
||||
|
||||
|
|
@ -94,13 +93,13 @@ export class CreateSalary {
|
|||
isActive: boolean;
|
||||
|
||||
@Column()
|
||||
date?: Date;
|
||||
date?: Date | null;
|
||||
|
||||
@Column()
|
||||
startDate?: Date;
|
||||
startDate?: Date | null;
|
||||
|
||||
@Column()
|
||||
endDate?: Date;
|
||||
endDate?: Date | null;
|
||||
|
||||
@Column()
|
||||
details?: string | null;
|
||||
|
|
@ -110,7 +109,6 @@ export class CreateSalary {
|
|||
}
|
||||
|
||||
export class UpdateSalary {
|
||||
|
||||
@Column()
|
||||
salaryType: string;
|
||||
|
||||
|
|
@ -124,13 +122,13 @@ export class UpdateSalary {
|
|||
isActive: boolean;
|
||||
|
||||
@Column()
|
||||
date?: Date;
|
||||
date?: Date | null;
|
||||
|
||||
@Column()
|
||||
startDate?: Date;
|
||||
startDate?: Date | null;
|
||||
|
||||
@Column()
|
||||
endDate?: Date;
|
||||
endDate?: Date | null;
|
||||
|
||||
@Column()
|
||||
details?: string | null;
|
||||
|
|
@ -139,4 +137,4 @@ export class UpdateSalary {
|
|||
isSpecial: boolean;
|
||||
}
|
||||
|
||||
// export type UpdateSalary = Partial<CreateSalary> ;
|
||||
// export type UpdateSalary = Partial<CreateSalary> ;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue