ปรับ ui รายการลาออก
This commit is contained in:
parent
ba63d25827
commit
9762b4e675
3 changed files with 204 additions and 75 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue