รายการ ลา

This commit is contained in:
setthawutttty 2025-04-28 17:17:17 +07:00
parent 1e2d0108b6
commit 14cc7aa52f
5 changed files with 670 additions and 26 deletions

View file

@ -34,6 +34,21 @@ interface FormData {
status: string;
}
interface RowsType{
commanders:SeqTypeRow[]
approvers:SeqTypeRow[]
}
interface SeqTypeRow {
seq: number;
prefix: string;
firstName: string;
lastName: string;
positionName: string;
profileId: string;
keycloakId: string;
approveStatus: string;
comment: string;
}
interface DataDateMonthObject {
month: number;
year: number;
@ -87,4 +102,6 @@ export type {
LeaveType,
FormReject,
ResCalendar,
SeqTypeRow,
RowsType
};