feat() 规则维护页面,测试下拉框

dev
chao 2024-05-08 18:25:45 +08:00
parent c2f545cd33
commit dd456647dc
4 changed files with 58 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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