2024-02-15 11:46:25 +07:00
|
|
|
interface DataOption {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
}
|
2024-02-15 18:01:15 +07:00
|
|
|
interface Salary {
|
|
|
|
|
id: string;
|
|
|
|
|
salaryType: string;
|
|
|
|
|
posType: string;
|
|
|
|
|
posLevel: string;
|
|
|
|
|
isActive: boolean;
|
|
|
|
|
date: Date; //ให้ไว้ ณ วันที่
|
|
|
|
|
startDate: Date;
|
|
|
|
|
endDate: Date;
|
|
|
|
|
detail: string;
|
|
|
|
|
}
|
2024-02-15 11:46:25 +07:00
|
|
|
|
2024-02-15 18:01:15 +07:00
|
|
|
export type { Salary };
|