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