refactor: add type agentUserId

This commit is contained in:
Thanaphon Frappet 2024-10-28 13:02:55 +07:00
parent ee752b9169
commit dac32c8eae

View file

@ -32,7 +32,8 @@ export type CustomerBranch = {
jobDescription: string; jobDescription: string;
jobPosition: string; jobPosition: string;
businessType: string; businessType: string;
agent: string; agentUserId: string;
contactName: string; contactName: string;
officeTel: string; officeTel: string;
contactTel: string; contactTel: string;
@ -129,7 +130,7 @@ export type CustomerBranchCreate = {
email: string; email: string;
contactTel?: string; contactTel?: string;
officeTel?: string; officeTel?: string;
agent?: string; agentUserId?: string;
status: Status; status: Status;
customerName?: string; customerName?: string;
registerName?: string; registerName?: string;