com.github.rrsunhome.excelsql.viewer.Viewer Maven / Gradle / Ivy
package com.github.rrsunhome.excelsql.viewer;
import java.util.List;
/**
* 抽象文件输出
*
* @author wanqijia
*/
public interface Viewer {
void outPut(String content);
void batchOutPut(List contentList);
}