Template สำหรับลงในตำแหน่ง/เงินเดือน API

This commit is contained in:
STW_TTTY\stwtt 2024-09-16 14:38:11 +07:00
parent 4c4cd03f0b
commit 1267b04af3
3 changed files with 194 additions and 126 deletions

View file

@ -7,6 +7,16 @@ interface DateOption {
id: string;
}
interface CommandSysType {
id: string;
createdAt: Date | null;
lastUpdatedAt: Date | null;
createdFullName: string;
lastUpdateFullName: string;
sysName: string;
sysDescription: string;
}
interface ActiveOptions {
value: boolean;
label: string;
@ -22,9 +32,9 @@ interface ListOrder {
}
interface ListTemplateSalary {
id: number | null;
id: string;
name: string;
status?: boolean;
isActive?: boolean;
}
interface Tabs {
@ -38,4 +48,5 @@ export type {
ListOrder,
Tabs,
ListTemplateSalary,
CommandSysType
};