com.jeesuite.common2.excel.ResultProcessor Maven / Gradle / Ivy
The newest version!
/**
*
*/
package com.jeesuite.common2.excel;
import java.util.List;
/**
* @description
* @author vakin
* @date 2017年1月18日
*/
public interface ResultProcessor {
int batchSize();
void process(List datas);
}