feat: agency personnel foreign address
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 5s
This commit is contained in:
parent
7f56a6219a
commit
cdb38e301e
6 changed files with 323 additions and 36 deletions
|
|
@ -61,6 +61,14 @@ export type User = {
|
|||
contactTel?: string;
|
||||
remark?: string;
|
||||
agencyStatus?: AgencyStatus;
|
||||
addressForeign?: boolean;
|
||||
provinceText?: string | null;
|
||||
districtText?: string | null;
|
||||
subDistrictText?: string | null;
|
||||
provinceTextEN?: string | null;
|
||||
districtTextEN?: string | null;
|
||||
subDistrictTextEN?: string | null;
|
||||
zipCodeText?: string | null;
|
||||
};
|
||||
|
||||
export type UserCreate = {
|
||||
|
|
@ -113,6 +121,14 @@ export type UserCreate = {
|
|||
contactTel?: string;
|
||||
remark?: string;
|
||||
agencyStatus?: AgencyStatus | string;
|
||||
addressForeign?: boolean;
|
||||
provinceText?: string | null;
|
||||
districtText?: string | null;
|
||||
subDistrictText?: string | null;
|
||||
provinceTextEN?: string | null;
|
||||
districtTextEN?: string | null;
|
||||
subDistrictTextEN?: string | null;
|
||||
zipCodeText?: string | null;
|
||||
};
|
||||
|
||||
export enum AgencyStatus {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue