실행 조건 구현
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user