疯狂的狮子li
2021-11-29 230d19a7aa3880b8afc4521416f7cdf94d49c2a6
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();
 
}