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 = {
|
export type Branch = {
|
||||||
|
permitExpireDate: Date;
|
||||||
|
permitIssueDate: Date;
|
||||||
|
permitNo: string;
|
||||||
selectedImage?: string;
|
selectedImage?: string;
|
||||||
subDistrict: SubDistrict | null;
|
subDistrict: SubDistrict | null;
|
||||||
district: District | null;
|
district: District | null;
|
||||||
|
|
@ -57,6 +60,9 @@ export type Branch = {
|
||||||
export type BranchWithChildren = Branch & { branch: Branch[] };
|
export type BranchWithChildren = Branch & { branch: Branch[] };
|
||||||
|
|
||||||
export type BranchCreate = {
|
export type BranchCreate = {
|
||||||
|
permitExpireDate: Date;
|
||||||
|
permitIssueDate: Date;
|
||||||
|
permitNo: string;
|
||||||
selectedImage?: string;
|
selectedImage?: string;
|
||||||
code?: string;
|
code?: string;
|
||||||
taxNo: string;
|
taxNo: string;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue