feat() 规则级别
parent
89b448f187
commit
e24b11d23e
|
@ -1,6 +1,8 @@
|
|||
package com.etl.rule.engine.scope;
|
||||
|
||||
/**
|
||||
* 数据模型
|
||||
*
|
||||
* @Author: Chao
|
||||
* @Description: 数据模型
|
||||
* @Version: 1.0
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
package com.etl.rule.engine.scope;
|
||||
|
||||
/**
|
||||
* 数据集
|
||||
*
|
||||
* @Author: Chao
|
||||
* @Description: 数据集
|
||||
* @Version: 1.0
|
||||
|
|
|
@ -1,15 +1,18 @@
|
|||
package com.etl.rule.engine.scope;
|
||||
|
||||
/**
|
||||
* 记录/资产模型
|
||||
*
|
||||
* @Author: Chao
|
||||
* @Description: 记录/资产模型
|
||||
* @Version: 1.0
|
||||
*/
|
||||
public class RecordContext {
|
||||
// public static ThreadLocal<DataModelContext> dataModelContextThreadLocal = new ThreadLocal<>();
|
||||
|
||||
private final TaskContext taskContext;
|
||||
private final DataModelContext dataModelContext;
|
||||
|
||||
public RecordContext (TaskContext taskContext) {
|
||||
this.taskContext = taskContext;
|
||||
public RecordContext(DataModelContext dataModelContext) {
|
||||
this.dataModelContext = dataModelContext;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
package com.etl.rule.engine.scope;
|
||||
|
||||
/**
|
||||
* 任务上下文
|
||||
*
|
||||
* @Author: Chao
|
||||
* @Description: 任务上下文
|
||||
* @Version: 1.0
|
||||
|
|
Loading…
Reference in New Issue