com.dream.chain.def.ChainInsertIntoTableDef Maven / Gradle / Ivy
The newest version!
package com.dream.chain.def;
import com.dream.antlr.smt.InsertStatement;
import com.dream.flex.def.InsertIntoTableDef;
import com.dream.flex.factory.FlexInsertFactory;
import com.dream.flex.mapper.FlexMapper;
public class ChainInsertIntoTableDef extends AbstractChainInsertDef implements InsertIntoTableDef {
public ChainInsertIntoTableDef(FlexInsertFactory creatorFactory, FlexMapper flexMapper) {
super(new InsertStatement(), creatorFactory, flexMapper);
}
}