Commit 68216263 by zhangxingmin

oss-v1版本

parent e2564331
......@@ -285,7 +285,7 @@ public class ExcelImportServiceImpl implements ExcelImportService {
for (int i = 0; i < data.size(); i++) {
Map<String, Object> row = data.get(i);
// int excelRowNum = dataStartRow + i + 1; // 计算Excel中的实际行号
Integer excelRowNum = checkStartRow + i; // 计算Excel中的实际行号
Integer excelRowNum = checkStartRow + i - 1; // 计算Excel中的实际行号
// 检查必填字段
for (String field : requiredFields) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment