refactor: add type contactName

This commit is contained in:
Net 2024-08-21 17:10:48 +07:00
parent ec60ad62dc
commit 6995b49a5a

View file

@ -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;