ui วินัย > ข้อมูลพื้นฐาน > รายชื่อกรรมการ
This commit is contained in:
parent
7c0284a87a
commit
7db2ff2260
9 changed files with 535 additions and 65 deletions
24
src/modules/11_discipline/interface/request/director.ts
Normal file
24
src/modules/11_discipline/interface/request/director.ts
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
interface FormData {
|
||||
prefix: string;
|
||||
firstname: string;
|
||||
lastname: string;
|
||||
position: string;
|
||||
phone: string;
|
||||
responsibilities: string;
|
||||
email: string;
|
||||
}
|
||||
interface FormRef {
|
||||
prefix: object | null;
|
||||
firstname: object | null;
|
||||
lastname: object | null;
|
||||
position: object | null;
|
||||
phone: object | null;
|
||||
responsibilities: object | null;
|
||||
email: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export type {
|
||||
FormData,
|
||||
FormRef
|
||||
};
|
||||
12
src/modules/11_discipline/interface/response/director.ts
Normal file
12
src/modules/11_discipline/interface/response/director.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
interface DirectorRows {
|
||||
no: number;
|
||||
name: string;
|
||||
position: string;
|
||||
responsibilities: string;
|
||||
email: string;
|
||||
phone: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
DirectorRows
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue