Commit e97190f5 authored by maliang's avatar maliang

权限控制

parent ce0882f5
...@@ -109,7 +109,7 @@ public class FileServiceImpl implements FileService { ...@@ -109,7 +109,7 @@ public class FileServiceImpl implements FileService {
row = sheet.getRow(i); row = sheet.getRow(i);
if(row !=null){ if(row !=null){
Cell cell = row.getCell(0); Cell cell = row.getCell(0);
if(cell.getDateCellValue()!=null){ if(cell!=null&&cell.getDateCellValue()!=null){
AdvertiserData advertiserData = new AdvertiserData(); AdvertiserData advertiserData = new AdvertiserData();
Date date = cell.getDateCellValue(); Date date = cell.getDateCellValue();
advertiserData.setReportDate(simpleDateFormat.format(date)); advertiserData.setReportDate(simpleDateFormat.format(date));
......
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