ปรับ ui รายการลาออก

This commit is contained in:
setthawutttty 2025-05-07 22:31:36 +07:00
parent ba63d25827
commit 9762b4e675
3 changed files with 204 additions and 75 deletions

View file

@ -54,15 +54,35 @@ interface MainListResponse {
isActive: boolean;
}
interface DataOptions{
id:string
name:string
interface DataOptions {
id: string;
name: 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;
rejectDate: Date | null;
}
export type {
QuestionDescription,
OptionQuestions,
OptionQuestions2,
MainList,
MainListResponse,
DataOptions
DataOptions,
RowsType,
SeqTypeRow,
};