疯狂的狮子Li
2022-12-14 4063b0c2ddc13d19f262267a83e1b707af1f2409
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();
 
}