แก้ UI ลาออก

This commit is contained in:
setthawutttty 2025-04-30 15:52:26 +07:00
parent fe6ce363f6
commit 7955ac3286
7 changed files with 1727 additions and 158 deletions

View file

@ -54,6 +54,22 @@ interface CheckBoxType {
value: 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;
}
export type {
resMain,
ResponseItems,
@ -61,4 +77,6 @@ export type {
rowFile,
FileList,
CheckBoxType,
RowsType,
SeqTypeRow
};