佟明键
2022-02-24 8b097af195e5b0056eaad06f199cd1d291821912
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.common.excel;
 
import com.alibaba.excel.read.listener.ReadListener;
 
/**
 * Excel 导入监听
 *
 * @author Lion Li
 */
public interface ExcelListener<T> extends ReadListener<T> {
 
    ExcelResult<T> getExcelResult();
 
}