|
@@ -521,6 +521,8 @@ public class TSpecdevYlgdController extends BaseController {
|
|
|
}
|
|
|
} else if (j == 13) { //年度检查报告编号
|
|
|
entity.setYearReportNo(cellValue);
|
|
|
+ }else if (j == 14) { //备注
|
|
|
+ entity.setRemarks(cellValue);
|
|
|
}
|
|
|
}
|
|
|
logger.info("entity:" + JSON.toJSONString(entity));
|
|
@@ -681,7 +683,8 @@ public class TSpecdevYlgdController extends BaseController {
|
|
|
row0.getCell(12).setCellStyle(style);
|
|
|
row0.createCell(13).setCellValue("年度检查报告编号");
|
|
|
row0.getCell(13).setCellStyle(style);
|
|
|
-
|
|
|
+ row0.createCell(14).setCellValue("备注");
|
|
|
+ row0.getCell(14).setCellStyle(style);
|
|
|
//填充数据
|
|
|
int rowIndex = 1;
|
|
|
int columnIndex = 1;
|
|
@@ -710,6 +713,7 @@ public class TSpecdevYlgdController extends BaseController {
|
|
|
row.createCell(12).setCellValue(new SimpleDateFormat("yyyy-MM-dd").format(t.getYearNextWarnDate()));
|
|
|
}
|
|
|
row.createCell(13).setCellValue(t.getYearReportNo());
|
|
|
+ row.createCell(14).setCellValue(t.getRemarks());
|
|
|
rowIndex++;
|
|
|
}
|
|
|
OutputStream out = null;
|