|
package com.muyu.handler;
|
|
|
|
import com.muyu.abstracts.DataValue;
|
|
|
|
public class DataEngineRowHandler {
|
|
|
|
public static void set(DataValue[] dataDescribe){DataEngineHandler.set(dataDescribe);}
|
|
|
|
public static DataValue[] get(){
|
|
return DataEngineHandler.get();
|
|
}
|
|
|
|
}
|