UI รายการข้าราชการฯที่ได้รับทุนการศึกษา

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-04 14:42:13 +07:00
parent db6d3440ed
commit 305c77e94a
2 changed files with 162 additions and 36 deletions

View file

@ -36,10 +36,30 @@ interface NewPagination {
sortBy: string;
}
interface DataPerson {
id: string;
name: string;
prefix: string;
rank: string;
firstName: string;
lastName: string;
citizenId: string;
level: string;
type: string;
posLevelId: string;
posTypeId: string;
position: string;
positionSide: string;
posNo: string;
oc: string;
[key: string]: any;
}
export type {
DataOption,
DataOptionCheckBox,
ItemsMenu,
NewPagination,
FormFilter,
DataPerson,
};