no message
This commit is contained in:
parent
d73f8b052f
commit
5895bbc9f2
7 changed files with 674 additions and 32 deletions
|
|
@ -26,4 +26,21 @@ interface DataRow {
|
|||
name?: string;
|
||||
}
|
||||
|
||||
export type { DataResponse, DataRow };
|
||||
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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue