2024-02-02 15:01:26 +07:00
|
|
|
interface DataResponse {
|
|
|
|
|
createdAt: Date;
|
|
|
|
|
id: string;
|
|
|
|
|
lastUpdateFullName: String;
|
|
|
|
|
lastUpdatedAt: Date;
|
|
|
|
|
prefix?: string;
|
2024-02-05 14:04:00 +07:00
|
|
|
rank?: number;
|
2024-02-02 15:01:26 +07:00
|
|
|
bloodgroup?: string;
|
|
|
|
|
gender?: string;
|
|
|
|
|
religion?: string;
|
|
|
|
|
relationship?: string;
|
2024-02-05 14:04:00 +07:00
|
|
|
name?: string;
|
2024-02-02 15:01:26 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface DataRow {
|
|
|
|
|
createdAt: string | null;
|
|
|
|
|
id: string;
|
|
|
|
|
lastUpdateFullName: String;
|
|
|
|
|
lastUpdatedAt: string | null;
|
|
|
|
|
prefix?: string;
|
2024-02-05 14:04:00 +07:00
|
|
|
rank?: number;
|
2024-02-02 15:01:26 +07:00
|
|
|
bloodgroup?: string;
|
|
|
|
|
gender?: string;
|
|
|
|
|
religion?: string;
|
|
|
|
|
relationship?: string;
|
2024-02-05 14:04:00 +07:00
|
|
|
name?: string;
|
2024-02-02 15:01:26 +07:00
|
|
|
}
|
|
|
|
|
|
2024-05-14 18:13:03 +07:00
|
|
|
interface FormDistrict {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
districts: District[];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface District {
|
|
|
|
|
id: string;
|
|
|
|
|
createdAt: string;
|
|
|
|
|
createdUserId: string;
|
|
|
|
|
lastUpdatedAt: string;
|
|
|
|
|
lastUpdateUserId: string;
|
|
|
|
|
createdFullName: string;
|
|
|
|
|
lastUpdateFullName: string;
|
|
|
|
|
name: string;
|
|
|
|
|
provinceId: string;
|
|
|
|
|
}
|
|
|
|
|
export type { DataResponse, DataRow,FormDistrict,District };
|