0e420269847fba944ee334ab1bec34d7b5f28a48.svn-base 427 B

123456789101112131415161718
  1. package cn.com.goldenwater.dcproj.utils.expExcel;
  2. import javax.servlet.http.HttpServletResponse;
  3. import java.util.List;
  4. /**
  5. * Created by lhc on 2019-3-18.
  6. */
  7. public interface ExportInterface {
  8. public void ContinueExport(List list) throws Exception;
  9. public void EndExport() throws Exception;
  10. public void ExportHead() throws Exception;
  11. public void Export(HttpServletResponse response) throws Exception;
  12. }