플로우 각 단계별 컬럼 설정기능

This commit is contained in:
kjs
2025-10-27 09:49:13 +09:00
parent 0a776ff358
commit a9d85b780b
10 changed files with 707 additions and 12 deletions

View File

@@ -85,9 +85,9 @@ class TableManagementApi {
/**
* 특정 테이블의 컬럼 목록 조회
*/
async getColumnList(tableName: string): Promise<ColumnListResponse> {
async getColumnList(tableName: string, size: number = 1000): Promise<ColumnListResponse> {
try {
const response = await apiClient.get(`${this.basePath}/tables/${tableName}/columns`);
const response = await apiClient.get(`${this.basePath}/tables/${tableName}/columns?size=${size}`);
return response.data;
} catch (error: any) {
console.error(`❌ 테이블 '${tableName}' 컬럼 목록 조회 실패:`, error);