17 lines
309 B
TypeScript
17 lines
309 B
TypeScript
interface DataOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
interface Salary {
|
|
id: string;
|
|
salaryType: string;
|
|
posType: string;
|
|
posLevel: string;
|
|
isActive: boolean;
|
|
date: Date; //ให้ไว้ ณ วันที่
|
|
startDate: Date;
|
|
endDate: Date;
|
|
detail: string;
|
|
}
|
|
|
|
export type { Salary };
|