엔티티조인 읽기전용 컬럼 추가
This commit is contained in:
@@ -484,6 +484,7 @@ export class EntityJoinController {
|
||||
columnName: col.columnName,
|
||||
columnLabel: col.displayName || col.columnName,
|
||||
dataType: col.dataType,
|
||||
inputType: col.inputType || "text",
|
||||
isNullable: true, // 기본값으로 설정
|
||||
maxLength: undefined, // 정보가 없으므로 undefined
|
||||
description: col.displayName,
|
||||
@@ -512,6 +513,7 @@ export class EntityJoinController {
|
||||
columnName: string;
|
||||
columnLabel: string;
|
||||
dataType: string;
|
||||
inputType: string;
|
||||
joinAlias: string;
|
||||
suggestedLabel: string;
|
||||
}> = [];
|
||||
@@ -526,6 +528,7 @@ export class EntityJoinController {
|
||||
columnName: col.columnName,
|
||||
columnLabel: col.columnLabel,
|
||||
dataType: col.dataType,
|
||||
inputType: col.inputType || "text",
|
||||
joinAlias,
|
||||
suggestedLabel,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user