疯狂的狮子Li
2022-06-30 b9931cda30d13a02c29194bbf387f87b0a9d368b
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();
 
}