add value : null in user
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 5s
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 5s
This commit is contained in:
parent
07e5f53be2
commit
2fa50bd7de
1 changed files with 4 additions and 4 deletions
|
|
@ -126,8 +126,8 @@ type UserCreate = {
|
|||
remark?: string;
|
||||
agencyStatus?: string;
|
||||
|
||||
contactName?: string;
|
||||
contactTel?: string;
|
||||
contactName?: string | null;
|
||||
contactTel?: string | null;
|
||||
};
|
||||
|
||||
type UserUpdate = {
|
||||
|
|
@ -188,8 +188,8 @@ type UserUpdate = {
|
|||
remark?: string;
|
||||
agencyStatus?: string;
|
||||
|
||||
contactName?: string;
|
||||
contactTel?: string;
|
||||
contactName?: string | null;
|
||||
contactTel?: string | null;
|
||||
};
|
||||
|
||||
const permissionCondCompany = createPermCondition((_) => true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue