ExcelResult.java 337 B

1234567891011121314151617181920212223242526
  1. package com.ruoyi.common.excel;
  2. import java.util.List;
  3. /**
  4. * excel返回对象
  5. *
  6. * @author Lion Li
  7. */
  8. public interface ExcelResult<T> {
  9. /**
  10. * 对象列表
  11. */
  12. List<T> getList();
  13. /**
  14. * 错误列表
  15. */
  16. List<String> getErrorList();
  17. /**
  18. * 导入回执
  19. */
  20. String getAnalysis();
  21. }