fix: 员工排班接入真实数据并移除兜底

This commit is contained in:
2026-02-20 09:03:23 +08:00
parent fc1739a00d
commit 11cd789f38
14 changed files with 298 additions and 196 deletions

View File

@@ -58,9 +58,11 @@ export interface StaffScheduleDto {
/** 门店排班聚合 */
export interface StoreStaffScheduleDto {
isScheduleConfigured: boolean;
isTemplateConfigured: boolean;
schedules: StaffScheduleDto[];
storeId: string;
templates: StoreShiftTemplatesDto;
templates: null | StoreShiftTemplatesDto;
weekStartDate: string;
}