1
2
3
4
5
6
7
8
9
10
11
12
| package com.ruoyi.common.utils.poi;
|
| /**
| * 导入实体可实现此接口,解析时由 {@link ExcelUtil} 回填所在 Excel 的真实行号(1 起算,与 Excel 左侧行号一致)。
| * ExcelUtil 会跳过表头与空行,实体在列表中的下标并不等于真实行号,报错提示需要真实行号定位问题。
| *
| * @author ruoyi
| */
| public interface ExcelRowAware {
|
| void setExcelRowNum(Integer excelRowNum);
| }
|
|