refactor: add type contactName
This commit is contained in:
parent
ec60ad62dc
commit
6995b49a5a
1 changed files with 3 additions and 1 deletions
|
|
@ -27,6 +27,7 @@ export type Customer = {
|
|||
|
||||
export type CustomerBranch = {
|
||||
customerId: string;
|
||||
contactName: string;
|
||||
wageRate: number;
|
||||
payDate: string;
|
||||
saleEmployee: string;
|
||||
|
|
@ -74,6 +75,8 @@ export type CustomerBranchCreate = {
|
|||
code?: string;
|
||||
customerCode?: string;
|
||||
|
||||
contactName: string;
|
||||
|
||||
provinceId: string;
|
||||
districtId: string;
|
||||
subDistrictId: string;
|
||||
|
|
@ -144,7 +147,6 @@ export type CustomerCreate = {
|
|||
status?: Status;
|
||||
image: File | null;
|
||||
registeredBranchId: string;
|
||||
|
||||
namePrefix: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue