แก้ไข เพิ่ม workInternationalForm

This commit is contained in:
AnandaTon 2023-11-09 12:23:37 +07:00
parent f5d71abaab
commit 1552da5d4c
7 changed files with 285 additions and 24 deletions

View file

@ -0,0 +1,18 @@
interface FormData {
leaveNo: string //เขียนที่***
startLeaveDate: Date | null //*วัน เดือน ปีเริ่มต้นลา
endLeaveDate: Date | null //*วัน เดือน ปีสิ้นสุดลา
leaveDetail: string //รายละเอียดการลา
file: File[] | null //เอกสารปะกอบ
}
interface FormRef {
leaveNo: object | null //เขียนที่***
startLeaveDate: object | null //*วัน เดือน ปีเริ่มต้นลา
endLeaveDate: object | null //*วัน เดือน ปีสิ้นสุดลา
leaveDetail: object | null //รายละเอียดการลา
file: object | null //เอกสารปะกอบ
[key: string]: any
}
export type { FormData, FormRef }