refactor: add type of CustomerBranchCreate

This commit is contained in:
Net 2024-08-02 10:00:45 +07:00
parent 43dbebe639
commit 811baa3ddc

View file

@ -63,6 +63,7 @@ export type CustomerBranch = {
};
export type CustomerBranchCreate = {
id?: string;
code?: string;
branchNo?: number;
address: string;
@ -91,6 +92,7 @@ export type CustomerBranchCreate = {
payDate: Date;
wageRate: number;
file?: File[];
statusSave?: boolean;
};
export type CustomerCreate = {