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

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-07-30 10:15:15 +07:00
parent 5c84afa6a8
commit 3531301713
3 changed files with 96 additions and 54 deletions

View file

@ -1,5 +1,5 @@
interface DataOption {
id: string;
id: string | null;
name: string;
}
@ -89,6 +89,18 @@ interface FormProjectDetail {
strategyChildActualNode: number | null; //node ยุทธศาสตร์เป้าหมายตามจริง
}
interface DataHistory {
citizenId: string;
id: string;
level: string;
name: string;
position: string;
positionSide: string;
projectName: string;
type: string;
year: number;
}
export type {
DataOption,
DataOptionCheckBox,
@ -99,4 +111,5 @@ export type {
ItemsDownload,
FormProjectDetail,
DataOptionTechnique,
DataHistory,
};