updated รายการเงินเดือน

This commit is contained in:
Warunee Tamkoo 2024-02-28 07:58:34 +07:00
parent 874685954c
commit 3d4acad8e5
5 changed files with 202 additions and 4 deletions

View file

@ -3,6 +3,12 @@ interface DataOption {
name: string;
}
interface DataOptionShort {
id: string;
name: string;
shortCode: string
}
interface NewPagination {
descending: boolean;
page: number;
@ -45,4 +51,5 @@ export type {
ItemsMenu,
ObjectSalaryRef,
ObjectSalaryRateRef,
DataOptionShort
};