ข้อมูลบุคคล: ทำinterfaceใหม่
This commit is contained in:
parent
cb195590a3
commit
959537f1c7
9 changed files with 193 additions and 209 deletions
|
|
@ -0,0 +1,27 @@
|
|||
interface DataResponse {
|
||||
createdAt: Date;
|
||||
id: string;
|
||||
lastUpdateFullName: String;
|
||||
lastUpdatedAt: Date;
|
||||
prefix?: string;
|
||||
rank?: string;
|
||||
bloodgroup?: string;
|
||||
gender?: string;
|
||||
religion?: string;
|
||||
relationship?: string;
|
||||
}
|
||||
|
||||
interface DataRow {
|
||||
createdAt: string | null;
|
||||
id: string;
|
||||
lastUpdateFullName: String;
|
||||
lastUpdatedAt: string | null;
|
||||
prefix?: string;
|
||||
rank?: string;
|
||||
bloodgroup?: string;
|
||||
gender?: string;
|
||||
religion?: string;
|
||||
relationship?: string;
|
||||
}
|
||||
|
||||
export type { DataResponse, DataRow };
|
||||
Loading…
Add table
Add a link
Reference in a new issue