ข้อมูลทะเบียนประวัติ => fix bug
This commit is contained in:
parent
b3a4db71ea
commit
201062289f
9 changed files with 259 additions and 43 deletions
48
src/modules/10_registry/interface/response/01_Information.ts
Normal file
48
src/modules/10_registry/interface/response/01_Information.ts
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
interface Address {
|
||||
currentAddress: string;
|
||||
currentDistrictId: string;
|
||||
currentProvinceId: string;
|
||||
currentSubDistrictId: string;
|
||||
currentZipCode: string;
|
||||
id: string;
|
||||
registrationAddress: string;
|
||||
registrationDistrictId: string;
|
||||
registrationProvinceId: string;
|
||||
registrationSubDistrictId: string;
|
||||
registrationZipCode: string;
|
||||
}
|
||||
interface Provinces {
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
id: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdatedAt: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
interface Districts {
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
id: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string;
|
||||
name: string;
|
||||
provinceId: string;
|
||||
}
|
||||
|
||||
interface SubDistricts {
|
||||
createdAt: string;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
districtId: string;
|
||||
id: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: string;
|
||||
name: string;
|
||||
zipCode: string;
|
||||
}
|
||||
|
||||
export type { Address, Provinces, Districts, SubDistricts };
|
||||
Loading…
Add table
Add a link
Reference in a new issue