빌드에러 수정 #349

Merged
kjs merged 2 commits from feature/screen-management into main 2026-01-09 15:57:16 +09:00
1 changed files with 6 additions and 0 deletions

View File

@ -2711,6 +2711,12 @@ export class TableManagementService {
filterColumn?: string;
filterValue?: any;
}; // 🆕 제외 필터 (다른 테이블에 이미 존재하는 데이터 제외)
deduplication?: {
enabled: boolean;
groupByColumn: string;
keepStrategy: "latest" | "earliest" | "base_price" | "current_date";
sortColumn?: string;
}; // 🆕 중복 제거 설정
}
): Promise<EntityJoinResponse> {
const startTime = Date.now();