|
|
|
@ -234,7 +234,7 @@ public class EvaluateOfficerServiceImpl extends BaseServiceImpl<EvaluateOfficerD |
|
|
|
// 循环Excel行数(不要列名,从1开始) ;0是列名
|
|
|
|
for (int r = 1; r < totalRows; r++) { |
|
|
|
Row row = sheet.getRow(r); |
|
|
|
if (row == null) { |
|
|
|
if (row == null || row.getCell(0) == null || "".equals(row.getCell(0).toString())) { |
|
|
|
continue; |
|
|
|
} |
|
|
|
EvaluateOfficerEntity evaluateOfficerEntity = new EvaluateOfficerEntity(); |
|
|
|
|