- ผลงานที่เคยเสนอขอประเมิน (ถ้ามี)
+ ผลงานที่เคยเสนอขอประเมิน (ถ้ามี)
diff --git a/src/modules/06_evaluate/interface/evalute.ts b/src/modules/06_evaluate/interface/evalute.ts
index 56fc8ba..ad95283 100644
--- a/src/modules/06_evaluate/interface/evalute.ts
+++ b/src/modules/06_evaluate/interface/evalute.ts
@@ -1,3 +1,29 @@
+interface PersonInformation {
+ assessments: any[];
+ birthDate: string;
+ certificates: any[];
+ educations: EducationForm[];
+ experience: null | any;
+ fullName: string;
+ govAge: string;
+ isEducationalQft: boolean;
+ isGovermantServiceHtr: boolean;
+ isHaveMinPeriodOrHoldPos: boolean;
+ isHaveProLicense: boolean;
+ isHaveSpecificQft: boolean;
+ isMinPeriodOfTenure: boolean;
+ isOperatingExp: boolean;
+ oc: string;
+ posNo: string;
+ position: string;
+ positionLevel: string;
+ prefix: string;
+ salaries: any[];
+ salary: string;
+ trainings: any[];
+ type: string;
+}
+
interface FormSpec {
isEducationalQft: boolean;
isGovermantServiceHtr: boolean;
@@ -67,6 +93,7 @@ interface ListMenu {
}
export type {
+ PersonInformation,
FormCommand,
FormCommandRef,
FormSpec,