feat() 规则维护页面,测试下拉框
parent
c2f545cd33
commit
dd456647dc
|
@ -0,0 +1,15 @@
|
||||||
|
package com.etl.data.rule.scope;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: Chao
|
||||||
|
* @Description: 数据模型
|
||||||
|
* @Version: 1.0
|
||||||
|
*/
|
||||||
|
public class DataModelContext {
|
||||||
|
|
||||||
|
private final DataSetContext dataSetContext;
|
||||||
|
|
||||||
|
public DataModelContext (DataSetContext dataSetContext) {
|
||||||
|
this.dataSetContext = dataSetContext;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
package com.etl.data.rule.scope;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: Chao
|
||||||
|
* @Description: 数据集
|
||||||
|
* @Version: 1.0
|
||||||
|
*/
|
||||||
|
public class DataSetContext {
|
||||||
|
|
||||||
|
private final RecordContext recordContext;
|
||||||
|
|
||||||
|
public DataSetContext (RecordContext recordContext) {
|
||||||
|
this.recordContext = recordContext;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
package com.etl.data.rule.scope;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: Chao
|
||||||
|
* @Description: 记录/资产模型
|
||||||
|
* @Version: 1.0
|
||||||
|
*/
|
||||||
|
public class RecordContext {
|
||||||
|
|
||||||
|
private final TaskContext taskContext;
|
||||||
|
|
||||||
|
public RecordContext (TaskContext taskContext) {
|
||||||
|
this.taskContext = taskContext;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.etl.data.rule.scope;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: Chao
|
||||||
|
* @Description: 任务上下文
|
||||||
|
* @Version: 1.0
|
||||||
|
*/
|
||||||
|
public class TaskContext {
|
||||||
|
|
||||||
|
public static TaskContext build(){
|
||||||
|
return new TaskContext();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue