form ยื่นใบลา

This commit is contained in:
setthawutttty 2023-11-08 13:55:39 +07:00
parent d69ca225a4
commit 14388119e9
15 changed files with 863 additions and 268 deletions

View file

@ -1,16 +1,32 @@
interface FormData {
dateStart:Date
subject:string
who:string
requestName:string
position:string
level:string
ocRequest:string
leaveReceived:string
leaveUse:string
leaveRemaining:string
dateStart: Date
subject: string
who: string
requestName: string
position: string
level: string
ocRequest: string
leaveReceived: string
leaveUse: string
leaveRemaining: string
}
interface FormRef06 {
writeat:object|null;
government:object|null;
birthday:object|null;
dateLeaveStart:object|null;
dateLeaveEnd:object|null;
totalLeave:object|null;
dateOrdination:object|null;
measureLocationName:object|null;
tel:object|null;
addressMeasure:object|null;
buddhistLocationName:object|null;
addressBuddhist:object|null;
[key: string]: any;
}
export type {
FormData
FormData,
FormRef06
}