UI รายการผังบัญชีเงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-02-15 18:01:15 +07:00
parent 7a8668271b
commit d1eab09ee4
7 changed files with 851 additions and 6 deletions

View file

@ -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 };