lhj #352

Merged
hjlee merged 13 commits from lhj into main 2026-01-12 17:26:49 +09:00
1 changed files with 6 additions and 0 deletions
Showing only changes of commit 5c9dda6826 - Show all commits

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();