เพิ้ม แก้ไข รายการโครงการ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-04 11:18:30 +07:00
parent 7cdcebf5e0
commit dd5a52f20e
7 changed files with 566 additions and 516 deletions

View file

@ -5,7 +5,7 @@ interface DataOption {
interface DataOptionCheckBox {
label: string;
value: string;
value: boolean;
}
interface FormFilter {
@ -13,7 +13,7 @@ interface FormFilter {
pageSize: number;
keyword: string;
type: string;
year:number
year: number;
posType: string;
posLevel: string;
retireYear: string | null;
@ -36,4 +36,10 @@ interface NewPagination {
sortBy: string;
}
export type { DataOption, DataOptionCheckBox, ItemsMenu, NewPagination ,FormFilter};
export type {
DataOption,
DataOptionCheckBox,
ItemsMenu,
NewPagination,
FormFilter,
};