hrms-mgt/src/modules/13_salary/interface/response/Main.ts
2024-02-15 18:01:15 +07:00

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 };