sgj
2026-01-26 bc427c64d8c9066eda7a817c7c7926954e39abb0
fzzy-igdss-core/src/main/java/com/fzzy/igds/service/ExportService.java
@@ -214,6 +214,18 @@
            }
        }
        //通知单编码
        cell = row.getCell(cellNum++);
        if(cell == null || cell.getCellType() == CellType.BLANK){
            resultData.setNoticeId("");
        }else {
            cell.setCellType(CellType.STRING);
            String noticeId = cell.getStringCellValue().trim();
            if(StringUtils.isNotEmpty(noticeId)){
                resultData.setNoticeId(noticeId);
            }
        }
        //装卸仓库
        cell = row.getCell(cellNum++);
        if(cell == null || cell.getCellType() == CellType.BLANK){