논리연산자 input 크기 조절

This commit is contained in:
hyeonsu
2025-09-15 10:11:22 +09:00
parent 8e6f8d2a27
commit af08b67331
3 changed files with 713 additions and 404 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -36,7 +36,17 @@ export interface TargetAction {
targetTable: string;
enabled: boolean;
fieldMappings: FieldMapping[];
conditions?: ConditionNode;
conditions?: Array<{
field: string;
operator: "=" | "!=" | ">" | "<" | ">=" | "<=" | "LIKE";
value: string;
logicalOperator?: "AND" | "OR"; // 다음 조건과의 논리 연산자
}>;
splitConfig?: {
sourceField: string;
delimiter: string;
targetField: string;
};
description?: string;
}