refactor: add type remark

This commit is contained in:
Net 2024-09-25 10:58:23 +07:00
parent 8695c90110
commit e606f1958e

View file

@ -16,6 +16,7 @@ export type BankBook = {
}; };
export type Branch = { export type Branch = {
remark: string;
permitExpireDate: Date; permitExpireDate: Date;
permitIssueDate: Date; permitIssueDate: Date;
permitNo: string; permitNo: string;
@ -98,6 +99,7 @@ export type BranchCreate = {
lineId: string; lineId: string;
webUrl?: string; webUrl?: string;
virtual: boolean; virtual: boolean;
remark: string;
}; };
export type BranchUserStats = { export type BranchUserStats = {