feat() 规则级别

chao
chao 2024-05-14 20:44:19 +08:00
parent 89b448f187
commit e24b11d23e
4 changed files with 12 additions and 3 deletions

View File

@ -1,6 +1,8 @@
package com.etl.rule.engine.scope; package com.etl.rule.engine.scope;
/** /**
*
*
* @Author: Chao * @Author: Chao
* @Description: * @Description:
* @Version: 1.0 * @Version: 1.0

View File

@ -1,6 +1,8 @@
package com.etl.rule.engine.scope; package com.etl.rule.engine.scope;
/** /**
*
*
* @Author: Chao * @Author: Chao
* @Description: * @Description:
* @Version: 1.0 * @Version: 1.0

View File

@ -1,15 +1,18 @@
package com.etl.rule.engine.scope; package com.etl.rule.engine.scope;
/** /**
* /
*
* @Author: Chao * @Author: Chao
* @Description: / * @Description: /
* @Version: 1.0 * @Version: 1.0
*/ */
public class RecordContext { public class RecordContext {
// public static ThreadLocal<DataModelContext> dataModelContextThreadLocal = new ThreadLocal<>();
private final TaskContext taskContext; private final DataModelContext dataModelContext;
public RecordContext (TaskContext taskContext) { public RecordContext(DataModelContext dataModelContext) {
this.taskContext = taskContext; this.dataModelContext = dataModelContext;
} }
} }

View File

@ -1,6 +1,8 @@
package com.etl.rule.engine.scope; package com.etl.rule.engine.scope;
/** /**
*
*
* @Author: Chao * @Author: Chao
* @Description: * @Description:
* @Version: 1.0 * @Version: 1.0