| 12345678910111213141516171819202122 |
- package com.sqx.modules.utils.excel;
- import java.util.List;
- public interface ExcelFinishCallBack<T> {
- /**
- * 导出后置处理数据
- * Do after all analysed.
- *
- * @param result the result
- */
- void doAfterAllAnalysed(List<T> result);
- /**
- * Do save batch.
- *
- * @param result the result
- */
- default void doSaveBatch(List<T> result) {
- }
- }
|