删除门店的多银行账户列表

This commit is contained in:
2026-09-08 14:23:00 +08:00
parent 253430b291
commit 8f25f823d5
22 changed files with 214 additions and 902 deletions
+1 -21
View File
@@ -55,26 +55,7 @@ export interface StoreWithdrawBankAccountDto {
bankBranch?: string | null;
}
/** 门店收款银行账户v4.0.18 多账户 */
export interface StoreBankAccountDto {
id: string;
storeId: string;
bankAccountName: string;
bankAccountNo: string;
bankBranch?: string | null;
isDefault: boolean;
status: 'ACTIVE' | 'DISABLED';
sortOrder?: number;
}
/** 门店收款银行账户新增/编辑入参 */
export interface StoreBankAccountInputDto {
bankAccountName: string;
bankAccountNo: string;
bankBranch?: string;
}
/** HQ 财务银行账户总目录类型(v4.0.18) */
/** HQ 财务全部银行账户目录类型v4.0.18 */
export const FINANCE_BANK_ACCOUNT_TYPES = ['STORE', 'WINERY', 'PARTNER', 'LOGISTICS', 'OTHER'] as const;
export type FinanceBankAccountType = (typeof FINANCE_BANK_ACCOUNT_TYPES)[number];
@@ -97,7 +78,6 @@ export interface FinanceBankAccountDto {
bankAccountNo: string;
bankBranch?: string | null;
remark?: string | null;
isDefault?: boolean;
editable: boolean;
}