แก้ไขข้อมูลราชการเเละบันทึกไม่ได้รับเงินเดือนเพิ่มเติม

This commit is contained in:
AnandaTon 2024-05-13 17:26:04 +07:00
parent f42f200c8a
commit 1afe64bdd3
8 changed files with 60 additions and 16 deletions

View file

@ -115,9 +115,20 @@ export class ProfileLeaveHistory extends ProfileLeave {
}
export class CreateProfileLeave {
profileId?: string | null;
profileId: string | null;
leaveTypeId: string;
profileEmployeeId?: string | null;
dateLeaveStart: Date | null;
dateLeaveEnd: Date | null;
leaveDays: number | null;
leaveCount: number | null;
totalLeave: number | null;
status: string | null;
reason: string | null;
}
export class CreateProfileEmployeeLeave {
leaveTypeId: string;
profileEmployeeId: string | null;
dateLeaveStart: Date | null;
dateLeaveEnd: Date | null;
leaveDays: number | null;