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;
/**
*
*
* @Author: Chao
* @Description:
* @Version: 1.0

View File

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

View File

@ -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;
}
}

View File

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