refactor: edit type
This commit is contained in:
parent
0ddda9cd35
commit
f30455e0e4
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue