|
|
|
@ -254,7 +254,7 @@ public class NonEnforcementRegistrationServiceImpl implements INonEnforcementReg |
|
|
|
styleRow2.setFont(font2); |
|
|
|
HSSFRow headerRow = sheet.createRow(0); |
|
|
|
// String[] header = {"被执法企业名称","企业所属区域", "企业所属街道", "执法单位", "执法人员","执法时间","入企事由","入企事项","活动依据"};
|
|
|
|
String[] header = {"单位名称", "企业名称","企业注册地", "企业所属街道", "入企人员","入企时间","入企事由","入企事项","活动依据"}; |
|
|
|
String[] header = {"单位名称", "企业名称","统一信用码","企业注册地", "企业所属街道", "入企人员","入企时间","入企事由","入企事项","活动依据"}; |
|
|
|
for (int i = 0; i < header.length; i++) { |
|
|
|
HSSFCell cell = headerRow.createCell(i); |
|
|
|
HSSFRichTextString text = new HSSFRichTextString(header[i]); |
|
|
|
@ -287,13 +287,14 @@ public class NonEnforcementRegistrationServiceImpl implements INonEnforcementReg |
|
|
|
HSSFRow row = sheet.createRow(i[0]); |
|
|
|
row.createCell(0).setCellValue(li.getBureauDeptName()); |
|
|
|
row.createCell(1).setCellValue(li.getEnterpriseName()); |
|
|
|
row.createCell(2).setCellValue(li.getArea()); |
|
|
|
row.createCell(3).setCellValue(li.getStreet()); |
|
|
|
row.createCell(4).setCellValue(li.getLawEnforcer()); |
|
|
|
row.createCell(5).setCellValue(DateUtils.parseDateToStr("yyyy-MM-dd HH:mm:ss",li.getEnforcementTime())); |
|
|
|
row.createCell(6).setCellValue(li.getLawEnforcementTypeText()); |
|
|
|
row.createCell(7).setCellValue(li.getLawEnforcementItemText()); |
|
|
|
row.createCell(8).setCellValue(li.getLawEnforcementBasisText()); |
|
|
|
row.createCell(2).setCellValue(li.getEnterpriseNumber()); |
|
|
|
row.createCell(3).setCellValue(li.getArea()); |
|
|
|
row.createCell(4).setCellValue(li.getStreet()); |
|
|
|
row.createCell(5).setCellValue(li.getLawEnforcer()); |
|
|
|
row.createCell(6).setCellValue(DateUtils.parseDateToStr("yyyy-MM-dd HH:mm:ss",li.getEnforcementTime())); |
|
|
|
row.createCell(7).setCellValue(li.getLawEnforcementTypeText()); |
|
|
|
row.createCell(8).setCellValue(li.getLawEnforcementItemText()); |
|
|
|
row.createCell(9).setCellValue(li.getLawEnforcementBasisText()); |
|
|
|
i[0]++; |
|
|
|
}); |
|
|
|
} |
|
|
|
|