org.pentaho.di.trans.steps.easyexpand.EasyExpandData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kettle-engine Show documentation
Show all versions of kettle-engine Show documentation
Container pom for Pentaho Data Integration modules
The newest version!
package org.pentaho.di.trans.steps.easyexpand;
/**
* @Title: 数据类
*/
import org.pentaho.di.core.row.RowMetaInterface;
import org.pentaho.di.trans.step.BaseStepData;
import org.pentaho.di.trans.step.StepDataInterface;
public class EasyExpandData extends BaseStepData implements StepDataInterface {
public RowMetaInterface outputRowMeta;
public EasyExpandData()
{
super();
}
}