Merge branch 'develop' into devTee
This commit is contained in:
commit
1e2d0108b6
20 changed files with 1551 additions and 209 deletions
|
|
@ -11,4 +11,11 @@ interface DataDateMonthObject {
|
|||
month: number;
|
||||
year: number;
|
||||
}
|
||||
export type { DataOption, DataOption2, DataDateMonthObject };
|
||||
|
||||
interface DataPagination {
|
||||
descending: boolean;
|
||||
page: number;
|
||||
rowsPerPage: number;
|
||||
sortBy: string;
|
||||
}
|
||||
export type { DataOption, DataOption2, DataDateMonthObject, DataPagination };
|
||||
|
|
|
|||
32
src/modules/09_leave/interface/response/leaveHistory.ts
Normal file
32
src/modules/09_leave/interface/response/leaveHistory.ts
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
interface DataLeaveType {
|
||||
code?: string;
|
||||
createdAt?: string;
|
||||
createdFullName?: string;
|
||||
createdUserId?: string;
|
||||
id: string;
|
||||
lastUpdateFullName?: string;
|
||||
lastUpdateUserId?: string;
|
||||
lastUpdatedAt?: string;
|
||||
limit?: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
interface DataLeaveBeginning {
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
firstName: string;
|
||||
id: string;
|
||||
lastName: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdatedAt: string;
|
||||
leaveDays: number;
|
||||
leaveDaysUsed: number;
|
||||
leaveType: string;
|
||||
leaveTypeCode: string;
|
||||
leaveTypeId: string;
|
||||
leaveYear: number;
|
||||
prefix: string;
|
||||
profileId: string;
|
||||
}
|
||||
|
||||
export type { DataLeaveType, DataLeaveBeginning };
|
||||
Loading…
Add table
Add a link
Reference in a new issue