feat: Add category reference to ColumnSettings interface

- Introduced a new optional property `categoryRef` to the `ColumnSettings` interface in `tableManagement.ts`, allowing for better handling of category references in table configurations.
This commit is contained in:
kjs 2026-02-26 13:53:12 +09:00
parent dd86d5e63c
commit 63d8e17392
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ export interface ColumnSettings {
displayColumn?: string; // 🎯 Entity 조인에서 표시할 컬럼명
displayOrder?: number; // 표시 순서
isVisible?: boolean; // 표시 여부
categoryRef?: string | null; // 카테고리 참조
}
export interface TableLabels {