From 7b8508932382a94c13594638c43582832024debe Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Wed, 17 Jan 2024 11:05:59 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B1=E0=B8=9A=20interfea?= =?UTF-8?q?c=20form=20director?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../interface/request/director.ts | 107 +++++++++--------- 1 file changed, 53 insertions(+), 54 deletions(-) diff --git a/src/modules/11_discipline/interface/request/director.ts b/src/modules/11_discipline/interface/request/director.ts index a2f50a141..9438e530a 100644 --- a/src/modules/11_discipline/interface/request/director.ts +++ b/src/modules/11_discipline/interface/request/director.ts @@ -1,70 +1,69 @@ interface FormData { - personalId: string - prefix: string; - firstname: string; - lastname: string; - position: string; - phone: string; - email: string; - qualification: string + personalId: string; + prefix: string; + firstname: string; + lastname: string; + position: string; + phone: string; + email: string; } interface FormDataPost { - personalId: string - prefix: string; - firstname: string; - lastname: string; - position: string; - phone: string; - email: string; - qualification: string; + personalId: string; + prefix: string; + firstname: string; + lastname: string; + position: string; + phone: string; + email: string; + qualification: string; } interface FormRef { - prefix: object | null; - firstname: object | null; - lastname: object | null; - position: object | null; - // phone: object | null; - // email: object | null; - [key: string]: any; + prefix: object | null; + firstname: object | null; + lastname: object | null; + position: object | null; + // phone: object | null; + // email: object | null; + [key: string]: any; } interface typeOp { - id: string - name: string + id: string; + name: string; } interface ResponsePreson { - personId: string; //id อ้างอิง profile - idcard: string; //รหัสบัตรประชาชน - prefix: string; //คำนำหน้า - firstName: string; //ชื่อ - lastName: string; //นามสกุล - posNo: string; //เลขที่ตำแหน่ง - position: string; //ตำแหน่ง - positionLevel: string; //ระดับ - salaries: number; //เงินเดือน - organization: string; //สังกัด - email: string; //อีเมล - phone: string; //เบอร์โทรศัพท์ + personId: string; //id อ้างอิง profile + idcard: string; //รหัสบัตรประชาชน + prefix: string; //คำนำหน้า + firstName: string; //ชื่อ + lastName: string; //นามสกุล + posNo: string; //เลขที่ตำแหน่ง + position: string; //ตำแหน่ง + positionLevel: string; //ระดับ + salaries: number; //เงินเดือน + organization: string; //สังกัด + email: string; //อีเมล + phone: string; //เบอร์โทรศัพท์ } interface tableType { - personId: string; - idcard: string; - prefix: string; - firstName: string; - lastName: string; - position: string; - positionLevel: string; - organization: string; - salary: string; - name: string; + personId: string; + idcard: string; + prefix: string; + firstName: string; + lastName: string; + position: string; + positionLevel: string; + organization: string; + salary: string; + name: string; } export type { - FormData, - FormRef, - FormDataPost, - typeOp, - ResponsePreson, - tableType -}; \ No newline at end of file + FormData, + FormRef, + FormDataPost, + typeOp, + ResponsePreson, + tableType, +};