22 lines
515 B
Java
22 lines
515 B
Java
package com.muyu.rule.common.basic.handler;
|
||
|
||
import com.muyu.common.domain.DataValue;
|
||
|
||
/**
|
||
* @Author:张承志
|
||
* @Package:com.muyu.rule.server.basic.handler
|
||
* @Project:cloud-etl-rule
|
||
* @name:DataEngineValueHandler
|
||
* @Date:2024/8/29 14:35
|
||
* @Description:数据集作用域
|
||
*/
|
||
public class DataEngineDataSetHandler {
|
||
|
||
public static void set(DataValue[][] dataDescribe){DataEngineHandler.set(dataDescribe);}
|
||
|
||
public static DataValue[][] get(){
|
||
return DataEngineHandler.get();
|
||
}
|
||
|
||
}
|