refactor(project): remove store mock fallback flows and unify real-data states

This commit is contained in:
2026-02-20 09:56:35 +08:00
parent 11cd789f38
commit 22d1a44683
39 changed files with 887 additions and 610 deletions

View File

@@ -44,7 +44,8 @@ export interface DineInTableDto {
/** 门店堂食设置聚合 */
export interface StoreDineInSettingsDto {
areas: DineInAreaDto[];
basicSettings: DineInBasicSettingsDto;
basicSettings: DineInBasicSettingsDto | null;
isConfigured: boolean;
storeId: string;
tables: DineInTableDto[];
}