실행 조건 구현

This commit is contained in:
hyeonsu
2025-09-12 11:33:54 +09:00
parent f50dd520ae
commit 3344a5785c
5 changed files with 79 additions and 177 deletions

View File

@@ -13,24 +13,7 @@ export interface ConditionNode {
operator?: "AND" | "OR";
children?: ConditionNode[];
field?: string;
operator_type?:
| "="
| "!="
| ">"
| "<"
| ">="
| "<="
| "LIKE"
| "NOT_LIKE"
| "CONTAINS"
| "STARTS_WITH"
| "ENDS_WITH"
| "IN"
| "NOT_IN"
| "IS_NULL"
| "IS_NOT_NULL"
| "BETWEEN"
| "NOT_BETWEEN";
operator_type?: "=" | "!=" | ">" | "<" | ">=" | "<=" | "LIKE";
value?: any;
dataType?: string;
}