รายการประวัติการฝึกอบรม/ดูงานของข้าราชการกรุงเทพมหานครสามัญ

This commit is contained in:
STW_TTTY\stwtt 2024-04-03 17:12:04 +07:00
parent 92914dfdda
commit 23bac0373e
10 changed files with 590 additions and 266 deletions

View file

@ -8,4 +8,18 @@ interface DataOptionCheckBox {
value: string;
}
export type { DataOption, DataOptionCheckBox };
interface FormFilter {
page: number;
pageSize: number;
keyword: string;
type: string;
year:number
posType: string;
posLevel: string;
retireYear: string | null;
rangeYear: { min: number; max: number };
isShowRetire: boolean | null;
isProbation: boolean | null;
}
export type { DataOption, DataOptionCheckBox,FormFilter };