UI รายการผังบัญชีเงินเดือน
This commit is contained in:
parent
7a8668271b
commit
d1eab09ee4
7 changed files with 851 additions and 6 deletions
|
|
@ -3,4 +3,28 @@ interface DataOption {
|
|||
name: string;
|
||||
}
|
||||
|
||||
export type { DataOption };
|
||||
interface NewPagination {
|
||||
descending: boolean;
|
||||
page: number;
|
||||
rowsPerPage: number;
|
||||
sortBy: string;
|
||||
}
|
||||
|
||||
interface ItemsMenu {
|
||||
label: string;
|
||||
icon: string;
|
||||
color: string;
|
||||
type: string;
|
||||
}
|
||||
interface ObjectSalaryRef {
|
||||
salaryType: object | null;
|
||||
posTyp: object | null;
|
||||
posLevel: object | null;
|
||||
date: object | null;
|
||||
startDate: object | null;
|
||||
endDate: object | null;
|
||||
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export type { DataOption, NewPagination, ItemsMenu, ObjectSalaryRef };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue