2024-09-04 13:54:50 +07:00
|
|
|
interface Pagination {
|
|
|
|
|
rowsPerPage: number;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-12 16:07:56 +07:00
|
|
|
interface DateOption {
|
|
|
|
|
name: string;
|
|
|
|
|
id: string;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-06 16:42:40 +07:00
|
|
|
interface ActiveOptions {
|
2024-09-11 18:06:04 +07:00
|
|
|
value: boolean;
|
2024-09-06 16:42:40 +07:00
|
|
|
label: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ListOrder {
|
|
|
|
|
id: string;
|
2024-09-09 13:56:29 +07:00
|
|
|
commandCode: string;
|
2024-09-06 16:42:40 +07:00
|
|
|
name: string;
|
|
|
|
|
status: boolean;
|
2024-09-09 13:56:29 +07:00
|
|
|
category?: string;
|
2024-09-06 16:42:40 +07:00
|
|
|
}
|
|
|
|
|
|
2024-09-12 16:41:05 +07:00
|
|
|
interface ListTemplateSalary {
|
|
|
|
|
id: number | null;
|
|
|
|
|
name: string;
|
|
|
|
|
status?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-06 16:42:40 +07:00
|
|
|
interface Tabs {
|
|
|
|
|
value: string;
|
|
|
|
|
label: string;
|
|
|
|
|
}
|
2024-09-12 16:42:41 +07:00
|
|
|
export type {
|
|
|
|
|
Pagination,
|
|
|
|
|
DateOption,
|
|
|
|
|
ActiveOptions,
|
|
|
|
|
ListOrder,
|
|
|
|
|
Tabs,
|
|
|
|
|
ListTemplateSalary,
|
|
|
|
|
};
|