diff --git a/src/stores/branch/types.ts b/src/stores/branch/types.ts index 4e264a92..c5ab94e8 100644 --- a/src/stores/branch/types.ts +++ b/src/stores/branch/types.ts @@ -16,6 +16,9 @@ export type BankBook = { }; export type Branch = { + permitExpireDate: Date; + permitIssueDate: Date; + permitNo: string; selectedImage?: string; subDistrict: SubDistrict | null; district: District | null; @@ -57,6 +60,9 @@ export type Branch = { export type BranchWithChildren = Branch & { branch: Branch[] }; export type BranchCreate = { + permitExpireDate: Date; + permitIssueDate: Date; + permitNo: string; selectedImage?: string; code?: string; taxNo: string;