엑셀 업로드 기능 개선

This commit is contained in:
kjs
2025-12-17 12:01:16 +09:00
parent 3d287bb883
commit 1995c3dca4
3 changed files with 43 additions and 18 deletions

View File

@@ -2,6 +2,7 @@ import { apiClient } from "./client";
export interface TableColumn {
name: string;
label: string; // 컬럼 라벨 (column_labels 테이블에서 가져옴)
type: string;
nullable: boolean;
default: string | null;