package cn.com.goldenwater.dcproj.utils.expExcel; import javax.servlet.http.HttpServletResponse; import java.util.List; /** * Created by lhc on 2019-3-18. */ public interface ExportInterface { public void ContinueExport(List list) throws Exception; public void EndExport() throws Exception; public void ExportHead() throws Exception; public void Export(HttpServletResponse response) throws Exception; }