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 = {
|
export type CustomerBranch = {
|
||||||
customerId: string;
|
customerId: string;
|
||||||
|
contactName: string;
|
||||||
wageRate: number;
|
wageRate: number;
|
||||||
payDate: string;
|
payDate: string;
|
||||||
saleEmployee: string;
|
saleEmployee: string;
|
||||||
|
|
@ -74,6 +75,8 @@ export type CustomerBranchCreate = {
|
||||||
code?: string;
|
code?: string;
|
||||||
customerCode?: string;
|
customerCode?: string;
|
||||||
|
|
||||||
|
contactName: string;
|
||||||
|
|
||||||
provinceId: string;
|
provinceId: string;
|
||||||
districtId: string;
|
districtId: string;
|
||||||
subDistrictId: string;
|
subDistrictId: string;
|
||||||
|
|
@ -144,7 +147,6 @@ export type CustomerCreate = {
|
||||||
status?: Status;
|
status?: Status;
|
||||||
image: File | null;
|
image: File | null;
|
||||||
registeredBranchId: string;
|
registeredBranchId: string;
|
||||||
|
|
||||||
namePrefix: string;
|
namePrefix: string;
|
||||||
firstName: string;
|
firstName: string;
|
||||||
lastName: string;
|
lastName: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue