hrms-mgt/src/modules/09_leave/interface/response/leave.ts

17 lines
565 B
TypeScript
Raw Normal View History

2023-10-20 16:57:32 +07:00
interface DataRows {
2023-11-17 15:28:03 +07:00
id: string; //*Id การยื่นขอลา
leaveTypeName: string | null; //Name ประเภทการลา
leaveTypeId: string; //Id ประเภทการลา
fullname: string; //คำนำหน้า ชื่อ นามสกุล คนขอลา
dateSendLeave: string | null; //วันที่ยื่นใบลา
status: string | null; //ส
2023-10-20 16:57:32 +07:00
}
2023-11-08 18:02:52 +07:00
interface FormData {
id: string;
leaveType: string;
name: string;
Date: string;
status: string;
}
export type { DataRows, FormData };