|
@@ -4,6 +4,11 @@ import java.io.IOException;
|
|
|
import java.net.URL;
|
|
|
import java.util.List;
|
|
|
import javax.servlet.ServletOutputStream;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+import org.apache.poi.ss.util.CellRangeAddress;
|
|
|
import org.apache.poi.xssf.usermodel.XSSFCell;
|
|
|
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
|
|
|
import org.apache.poi.xssf.usermodel.XSSFRow;
|
|
@@ -143,6 +148,7 @@ public class GkjyrServiceImpl extends JyglBaseService<GkjyrEntity, String> imple
|
|
|
// 创建一个workbook 对应一个excel应用文件
|
|
|
XSSFWorkbook workBook = new XSSFWorkbook();
|
|
|
setSheet(voList, outputStream, workBook);
|
|
|
+ //setSheet1(voList.get(0), outputStream, workBook);
|
|
|
try {
|
|
|
workBook.write(outputStream);
|
|
|
outputStream.flush();
|
|
@@ -424,13 +430,1333 @@ public class GkjyrServiceImpl extends JyglBaseService<GkjyrEntity, String> imple
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @param voList
|
|
|
+ * @param outputStream
|
|
|
+ * @param workBook
|
|
|
+ */
|
|
|
+ /**
|
|
|
+ * @param voList
|
|
|
+ * @param outputStream
|
|
|
+ * @param workBook
|
|
|
+ */
|
|
|
+ /**
|
|
|
+ * @param voList
|
|
|
+ * @param outputStream
|
|
|
+ * @param workBook
|
|
|
+ */
|
|
|
+ public void setSheet1(GkjyrVo voList, ServletOutputStream outputStream, XSSFWorkbook workBook) {
|
|
|
+ /*String[] titles = { "所在地", "所在港口", "所在港区", "是否危货企业", "经营人名称", "企业性质", "办公地址", "邮政编码", "经营许可证号编号", "发证日期", "发证机关",
|
|
|
+ "经营范围", "经营区域", "主营货种", "法定代表人姓名", "联系电话", "传真", "工商营业执照编号", "投资总额", "注册资本", "危险货物作业附证编号", "设施保安符合证书编号",
|
|
|
+ "从业人员数量", "现场管理人员(人)", "专业技术人员(人)", "现场作业人员(人)", "房建设施总面积(平方米)", "有无产权证明", "办公用房(平方米)",
|
|
|
+ "岸线长度(米)", "码头前沿河底高程(米)", "码头泊位总数(平方米)", "生产性泊位(个)", "非生产性泊位(个)", "最大靠泊能力(万吨)", "万吨级以上泊位数量(个)", "码头结构型式",
|
|
|
+ "泊位总长度(米)", "有无竣工验收证明", "设计年通过能力(万吨)", "上年度总吞量(万吨)", "其中外贸总吞量(万吨)", "陆域总面积(平方米)", "仓库总面积(平方米)", "堆场总面积(平方米)",
|
|
|
+ "装卸设备(台)", "其中门座吊机(台)", "轮胎起重机(台)", "固定吊机(台)", "汽车起重机(台)", "输送设备(台)", "其他机械(台)", "港作船舶(艘)", "船舶总载重量(万吨)",
|
|
|
+ "工艺管线长度(米)", "铁路专用长度(米)", "储罐数量(个)", "储罐总容量(立方米)" };*/
|
|
|
+ // 在workbook中添加一个sheet,对应Excel文件中的sheet
|
|
|
+ XSSFSheet jyrSheet = workBook.createSheet("港口经营人信息");
|
|
|
+ ExportUtil exportUtil = new ExportUtil(workBook, jyrSheet);
|
|
|
+ //XSSFCellStyle headStyle = exportUtil.getHeadStyle();
|
|
|
+ XSSFCellStyle bodyStyle = exportUtil.getBodyStyle();
|
|
|
+ XSSFCellStyle bodyStyle1 = exportUtil.getBodyStyle1();
|
|
|
+ // 构建表头
|
|
|
+ //XSSFRow headRow = jyrSheet.createRow(0);
|
|
|
+ XSSFCell cell = null;
|
|
|
+ /*for (int i = 0; i < titles.length; i++) {
|
|
|
+ cell = headRow.createCell(i);
|
|
|
+ cell.setCellStyle(headStyle);
|
|
|
+ cell.setCellValue(titles[i]);
|
|
|
+ }*/
|
|
|
+ // 构建表体数据
|
|
|
+ /*XSSFRow bodyRow0 = jyrSheet.createRow(0);
|
|
|
+ cell = bodyRow0.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSzdzw());
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("所在地");
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("所在港口");
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSzgkzw());
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("所在港区");
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSzgqzw());
|
|
|
+ // 序号
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港口经营人名称");
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGkjyr());
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("企业性质");
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getQyxzzw());
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("是否危货企业");
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSfwhqyzw());
|
|
|
+
|
|
|
+ //CellRangeAddress region = new CellRangeAddress(0,0,0,1);
|
|
|
+
|
|
|
+ //jyrSheet.addMergedRegion(region);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ XSSFRow bodyRow1 = jyrSheet.createRow(1);
|
|
|
+ cell = bodyRow1.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("办公地址");
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getBgdz());
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("邮政编码");
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getYzbm());
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("设计年通过能力(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSjntgnl());
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港口经营证许可编号");
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGkjyxkzh());
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("发证日期");
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFzrqstr());
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("发证机关");
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFzjg());
|
|
|
+
|
|
|
+
|
|
|
+ XSSFRow bodyRow2 = jyrSheet.createRow(2);
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("经营范围");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getJyfw());
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("经营区域");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getJyqy());
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("主营货种");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZyhz());
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("法定代表人姓名");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFddbr());
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("联系电话");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getLxdh());
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("传真");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCz());
|
|
|
+
|
|
|
+ XSSFRow bodyRow3 = jyrSheet.createRow(3);
|
|
|
+ cell = bodyRow3.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("工商营业执照编号");
|
|
|
+ cell = bodyRow3.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGsyyzzbh());
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("投资总额");
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getTzze());
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("注册资本");
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZczb());
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港口货物危险作业认可证号编号");
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGkwxhwzyfzbh());
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港口设施保安符合证书编号");
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGkssbafhzsbh());
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("从业人员数量(人)");
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCyrysl());
|
|
|
+
|
|
|
+ XSSFRow bodyRow4 = jyrSheet.createRow(4);
|
|
|
+ cell = bodyRow4.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("现场管理人员(人)");
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getXcglrysl());
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("专业技术人员(人)");
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZyjsrysl());
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("现场作业人员(人)");
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getXczyrysl());
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("房建设施总面积(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFjsszmj());
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("有无产权证明");
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getYwcqzmzw());
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("办公用房(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getBgyfmj());
|
|
|
+
|
|
|
+ XSSFRow bodyRow5 = jyrSheet.createRow(5);
|
|
|
+ cell = bodyRow5.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("岸线长度(米)");
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getAxcd());
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("码头前沿河底高程(米)");
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getMtqyhdgc());
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("码头泊位总数(个)");
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getMtbwzs());
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("生产性泊位(个)");
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getScxbw());
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("非生产泊位(个)");
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFscxbw());
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("最大靠泊能力(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZdkbnl());
|
|
|
+
|
|
|
+ XSSFRow bodyRow6 = jyrSheet.createRow(6);
|
|
|
+ cell = bodyRow6.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("万吨以上泊位数量(个)");
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getWdjysbwsl());
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("码头结构形式");
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getMtjgxszw());
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("泊位总长度(米)");
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getBwzcd());
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("有无竣工验收(证明)");
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getYwjgyszw());
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("上年度总吞吐量(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSndzttl());
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("其中外贸吞吐量(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSndwmttl());
|
|
|
+
|
|
|
+ XSSFRow bodyRow7 = jyrSheet.createRow(7);
|
|
|
+ cell = bodyRow7.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("陆域总面积(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getLymj());
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("仓库总面积(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCkzmj());
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("堆场总面积(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getTczmj());
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("装卸设备(台)");
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZxsbgs());
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("其中,门做吊机(台)");
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getMzdjgs());
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("轮胎起重机(台)");
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getLtqzjgs());
|
|
|
+
|
|
|
+ XSSFRow bodyRow8 = jyrSheet.createRow(8);
|
|
|
+ cell = bodyRow8.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("固定吊机(台)");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGddjgs());
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("汽车起重机(台)");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getQcqzjgs());
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("输送设备(台)");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSssbgs());
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("其他机械(台)");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getQtjxgs());
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(8);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港作船舶(艘)");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(9);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGzcbgs());
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(10);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("船舶总载重量(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(11);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCbzzzl());
|
|
|
+
|
|
|
+ XSSFRow bodyRow9 = jyrSheet.createRow(9);
|
|
|
+ cell = bodyRow9.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("工艺管线长度(米)");
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGygxcd());
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("铁路专用线长度(米)");
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getTlzyxcd());
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("储罐数量(个)");
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCgsl());
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("储罐总容量(立方米)");
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(7);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCgzrl());
|
|
|
+ */
|
|
|
+
|
|
|
+ XSSFRow bodyRow0 = jyrSheet.createRow(0);
|
|
|
+ cell = bodyRow0.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港口经营人名称");
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGkjyr());
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("企业性质");
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getQyxzzw());
|
|
|
+
|
|
|
+ CellRangeAddress region = new CellRangeAddress(0,0,1,4);
|
|
|
+ jyrSheet.addMergedRegion(region);
|
|
|
+
|
|
|
+ XSSFRow bodyRow1 = jyrSheet.createRow(1);
|
|
|
+ cell = bodyRow1.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("办公地址");
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getBgdz());
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow0.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("邮政编码");
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow1.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getYzbm());
|
|
|
+
|
|
|
+ CellRangeAddress region1 = new CellRangeAddress(1,1,1,4);
|
|
|
+ jyrSheet.addMergedRegion(region1);
|
|
|
+
|
|
|
+ XSSFRow bodyRow2 = jyrSheet.createRow(2);
|
|
|
+ cell = bodyRow2.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港口经营证许可编号");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGkjyxkzh());
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("发证日期");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFzrqstr());
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("发证机关");
|
|
|
+
|
|
|
+ cell = bodyRow2.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFzjg());
|
|
|
+
|
|
|
+ CellRangeAddress region2 = new CellRangeAddress(2,2,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region2);
|
|
|
+
|
|
|
+ XSSFRow bodyRow3 = jyrSheet.createRow(3);
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("经营范围");
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getJyfw());
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow3.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ CellRangeAddress region3 = new CellRangeAddress(3,3,1,6);
|
|
|
+ jyrSheet.addMergedRegion(region3);
|
|
|
+
|
|
|
+ XSSFRow bodyRow4 = jyrSheet.createRow(4);
|
|
|
+ cell = bodyRow4.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("经营区域");
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getJyqy());
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("主营货种");
|
|
|
+
|
|
|
+ cell = bodyRow4.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZyhz());
|
|
|
+
|
|
|
+ CellRangeAddress region4 = new CellRangeAddress(4,4,1,4);
|
|
|
+ jyrSheet.addMergedRegion(region4);
|
|
|
+
|
|
|
+ XSSFRow bodyRow5 = jyrSheet.createRow(5);
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("法定代表人姓名");
|
|
|
+ cell = bodyRow5.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFddbr());
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("联系电话");
|
|
|
+ cell = bodyRow5.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getLxdh());
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow5.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("传真");
|
|
|
+ cell = bodyRow5.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCz());
|
|
|
+
|
|
|
+ CellRangeAddress region5 = new CellRangeAddress(5,5,3,4);
|
|
|
+
|
|
|
+ jyrSheet.addMergedRegion(region5);
|
|
|
+
|
|
|
+ XSSFRow bodyRow6 = jyrSheet.createRow(6);
|
|
|
+ cell = bodyRow6.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("工商营业执照编号");
|
|
|
+ cell = bodyRow6.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGsyyzzbh());
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("投资总额");
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getTzze());
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("注册资本");
|
|
|
+
|
|
|
+ cell = bodyRow6.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZczb());
|
|
|
+
|
|
|
+ CellRangeAddress region6 = new CellRangeAddress(6,6,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region6);
|
|
|
+
|
|
|
+ XSSFRow bodyRow7 = jyrSheet.createRow(7);
|
|
|
+ cell = bodyRow7.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港口货物危险作业认可证号编号");
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGkwxhwzyfzbh());
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港口设施保安符合证书编号");
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow7.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGkssbafhzsbh());
|
|
|
+
|
|
|
+ CellRangeAddress region7 = new CellRangeAddress(7,7,1,3);
|
|
|
+ CellRangeAddress region71 = new CellRangeAddress(7,7,4,5);
|
|
|
+ jyrSheet.addMergedRegion(region7);
|
|
|
+ jyrSheet.addMergedRegion(region71);
|
|
|
+
|
|
|
+
|
|
|
+ XSSFRow bodyRow8 = jyrSheet.createRow(8);
|
|
|
+ cell = bodyRow8.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("从业人员数量");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCyrysl());
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("现场管理人员(人)");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getXcglrysl());
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("参加培训人员数量(人)");
|
|
|
+
|
|
|
+ cell = bodyRow8.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getXcglpxrysl());
|
|
|
+
|
|
|
+ XSSFRow bodyRow9 = jyrSheet.createRow(9);
|
|
|
+ cell = bodyRow9.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("专业技术人员(人)");
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZyjsrysl());
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("参加培训人员数量(人)");
|
|
|
+
|
|
|
+ cell = bodyRow9.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZyjspxrysl());
|
|
|
+
|
|
|
+ XSSFRow bodyRow10 = jyrSheet.createRow(10);
|
|
|
+ cell = bodyRow10.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow10.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow10.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow10.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("现场作业人员(人)");
|
|
|
+
|
|
|
+ cell = bodyRow10.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getXczyrysl());
|
|
|
+
|
|
|
+ cell = bodyRow10.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("参加培训人员数量(人)");
|
|
|
+
|
|
|
+ cell = bodyRow10.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getXczyrypxsl());
|
|
|
+
|
|
|
+ CellRangeAddress region89101 = new CellRangeAddress(8,10,0,0);
|
|
|
+ jyrSheet.addMergedRegion(region89101);
|
|
|
+ CellRangeAddress region89102 = new CellRangeAddress(8,10,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region89102);
|
|
|
+ CellRangeAddress region89103 = new CellRangeAddress(8,10,5,5);
|
|
|
+ jyrSheet.addMergedRegion(region89103);
|
|
|
+
|
|
|
+
|
|
|
+ XSSFRow bodyRow11 = jyrSheet.createRow(11);
|
|
|
+ cell = bodyRow11.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("房建设施总面积(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow11.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFjsszmj());
|
|
|
+
|
|
|
+ cell = bodyRow11.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow11.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("有无产权证明");
|
|
|
+
|
|
|
+ cell = bodyRow11.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getYwcqzmzw());
|
|
|
+
|
|
|
+ cell = bodyRow11.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("办公用房(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow11.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getBgyfmj());
|
|
|
+ CellRangeAddress region11 = new CellRangeAddress(11,11,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region11);
|
|
|
+
|
|
|
+ XSSFRow bodyRow12 = jyrSheet.createRow(12);
|
|
|
+ cell = bodyRow12.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("岸线长度(米)");
|
|
|
+
|
|
|
+ cell = bodyRow12.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getAxcd());
|
|
|
+
|
|
|
+ cell = bodyRow12.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow12.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("码头前沿河底高程(米)");
|
|
|
+
|
|
|
+ cell = bodyRow12.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow12.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getMtqyhdgc());
|
|
|
+
|
|
|
+ cell = bodyRow12.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ CellRangeAddress region121 = new CellRangeAddress(12,12,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region121);
|
|
|
+ CellRangeAddress region122 = new CellRangeAddress(12,12,3,4);
|
|
|
+ jyrSheet.addMergedRegion(region122);
|
|
|
+ CellRangeAddress region123 = new CellRangeAddress(12,12,5,6);
|
|
|
+ jyrSheet.addMergedRegion(region123);
|
|
|
+
|
|
|
+ XSSFRow bodyRow13 = jyrSheet.createRow(13);
|
|
|
+ cell = bodyRow13.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("码头泊位总数(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow13.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getMtbwzs());
|
|
|
+
|
|
|
+ cell = bodyRow13.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow13.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("生产性泊位(个)");
|
|
|
+
|
|
|
+ cell = bodyRow13.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getScxbw());
|
|
|
+
|
|
|
+ cell = bodyRow13.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("非生产泊位(个)");
|
|
|
+
|
|
|
+ cell = bodyRow13.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getFscxbw());
|
|
|
+ CellRangeAddress region13 = new CellRangeAddress(13,13,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region13);
|
|
|
+
|
|
|
+ XSSFRow bodyRow14 = jyrSheet.createRow(14);
|
|
|
+ cell = bodyRow14.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("最大靠泊能力(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow14.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZdkbnl());
|
|
|
+
|
|
|
+ cell = bodyRow14.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow14.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow14.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("万吨以上泊位数量(个)");
|
|
|
+
|
|
|
+ cell = bodyRow14.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow14.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getWdjysbwsl());
|
|
|
+ CellRangeAddress region14 = new CellRangeAddress(14,14,1,3);
|
|
|
+ jyrSheet.addMergedRegion(region14);
|
|
|
+ CellRangeAddress region141 = new CellRangeAddress(14,14,4,5);
|
|
|
+ jyrSheet.addMergedRegion(region141);
|
|
|
+
|
|
|
+ XSSFRow bodyRow15 = jyrSheet.createRow(15);
|
|
|
+ cell = bodyRow15.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("码头结构形式");
|
|
|
+
|
|
|
+ cell = bodyRow15.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getMtjgxszw());
|
|
|
+
|
|
|
+ cell = bodyRow15.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow15.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("泊位总长度(米)");
|
|
|
+
|
|
|
+ cell = bodyRow15.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getBwzcd());
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow15.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("有无竣工验收(证明)");
|
|
|
+
|
|
|
+ cell = bodyRow15.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getYwjgyszw());
|
|
|
+ CellRangeAddress region15 = new CellRangeAddress(15,15,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region15);
|
|
|
+
|
|
|
+ XSSFRow bodyRow16 = jyrSheet.createRow(16);
|
|
|
+ cell = bodyRow16.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("设计年通过能力(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow16.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSjntgnl());
|
|
|
+
|
|
|
+ cell = bodyRow16.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow16.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow16.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("其中集装箱(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow16.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow16.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getJzx());
|
|
|
+ CellRangeAddress region16 = new CellRangeAddress(16,16,1,3);
|
|
|
+ jyrSheet.addMergedRegion(region16);
|
|
|
+ CellRangeAddress region161 = new CellRangeAddress(16,16,4,5);
|
|
|
+ jyrSheet.addMergedRegion(region161);
|
|
|
+
|
|
|
+ XSSFRow bodyRow17 = jyrSheet.createRow(17);
|
|
|
+ cell = bodyRow17.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("上年度总吞吐量(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow17.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSndzttl());
|
|
|
+
|
|
|
+ cell = bodyRow17.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow17.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow17.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("其中集装箱(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow17.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow17.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSndzjzx());
|
|
|
+
|
|
|
+ CellRangeAddress region17 = new CellRangeAddress(17,17,1,3);
|
|
|
+ jyrSheet.addMergedRegion(region17);
|
|
|
+ CellRangeAddress region171 = new CellRangeAddress(17,17,4,5);
|
|
|
+ jyrSheet.addMergedRegion(region171);
|
|
|
+
|
|
|
+ XSSFRow bodyRow171 = jyrSheet.createRow(18);
|
|
|
+ cell = bodyRow171.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("其中外贸吞吐量(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow171.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ //cell.setCellValue(voList.getSndzttl());
|
|
|
+ cell.setCellValue(voList.getSndwmttl());
|
|
|
+
|
|
|
+ cell = bodyRow171.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow171.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow171.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("其中集装箱(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow171.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow171.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSndwmjzx());
|
|
|
+
|
|
|
+ CellRangeAddress region1711 = new CellRangeAddress(18,18,1,3);
|
|
|
+ jyrSheet.addMergedRegion(region1711);
|
|
|
+ CellRangeAddress region1712 = new CellRangeAddress(18,18,4,5);
|
|
|
+ jyrSheet.addMergedRegion(region1712);
|
|
|
+
|
|
|
+ XSSFRow bodyRow18 = jyrSheet.createRow(19);
|
|
|
+ cell = bodyRow18.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("陆域总面积(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow18.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getLymj());
|
|
|
+
|
|
|
+ cell = bodyRow18.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow18.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("仓库总面积(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow18.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCkzmj());
|
|
|
+
|
|
|
+ cell = bodyRow18.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("堆场总面积(平米)");
|
|
|
+
|
|
|
+ cell = bodyRow18.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getTczmj());
|
|
|
+ CellRangeAddress region18 = new CellRangeAddress(19,19,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region18);
|
|
|
+
|
|
|
+ XSSFRow bodyRow19 = jyrSheet.createRow(20);
|
|
|
+ cell = bodyRow19.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("装卸设备总数量(台)");
|
|
|
+
|
|
|
+ cell = bodyRow19.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getZxsbgs());
|
|
|
+
|
|
|
+ cell = bodyRow19.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow19.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("门做吊机(台)");
|
|
|
+
|
|
|
+ cell = bodyRow19.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getMzdjgs());
|
|
|
+
|
|
|
+ cell = bodyRow19.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("轮胎起重机(台)");
|
|
|
+
|
|
|
+ cell = bodyRow19.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getLtqzjgs());
|
|
|
+
|
|
|
+ XSSFRow bodyRow20 = jyrSheet.createRow(21);
|
|
|
+ cell = bodyRow20.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow20.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow20.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow20.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("固定吊机(台)");
|
|
|
+
|
|
|
+ cell = bodyRow20.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGddjgs());
|
|
|
+
|
|
|
+ cell = bodyRow20.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("汽车起重机(台)");
|
|
|
+
|
|
|
+ cell = bodyRow20.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getQcqzjgs());
|
|
|
+
|
|
|
+ XSSFRow bodyRow21 = jyrSheet.createRow(22);
|
|
|
+ cell = bodyRow21.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow21.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+
|
|
|
+ cell = bodyRow21.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow21.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("输送设备(台)");
|
|
|
+
|
|
|
+ cell = bodyRow21.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getSssbgs());
|
|
|
+
|
|
|
+ cell = bodyRow21.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("其他机械(台)");
|
|
|
+
|
|
|
+ cell = bodyRow21.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getQtjxgs());
|
|
|
+
|
|
|
+ CellRangeAddress region1920211 = new CellRangeAddress(20,22,0,0);
|
|
|
+ jyrSheet.addMergedRegion(region1920211);
|
|
|
+ CellRangeAddress region1920212 = new CellRangeAddress(20,22,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region1920212);
|
|
|
+
|
|
|
+
|
|
|
+ XSSFRow bodyRow22 = jyrSheet.createRow(23);
|
|
|
+ cell = bodyRow22.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("港作船舶(艘)");
|
|
|
+
|
|
|
+ cell = bodyRow22.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGzcbgs());
|
|
|
+
|
|
|
+ cell = bodyRow22.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow22.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow22.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("船舶总载重量(万吨)");
|
|
|
+
|
|
|
+ cell = bodyRow22.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow22.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCbzzzl());
|
|
|
+
|
|
|
+ CellRangeAddress region22 = new CellRangeAddress(23,23,1,3);
|
|
|
+ jyrSheet.addMergedRegion(region22);
|
|
|
+ CellRangeAddress region221 = new CellRangeAddress(23,23,4,5);
|
|
|
+ jyrSheet.addMergedRegion(region221);
|
|
|
+
|
|
|
+ XSSFRow bodyRow23 = jyrSheet.createRow(24);
|
|
|
+ cell = bodyRow23.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("工艺管线长度(米)");
|
|
|
+
|
|
|
+ cell = bodyRow23.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getGygxcd());
|
|
|
+
|
|
|
+ cell = bodyRow23.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow23.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("铁路专用线长度(米)");
|
|
|
+
|
|
|
+ cell = bodyRow23.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow23.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getTlzyxcd());
|
|
|
+ cell = bodyRow23.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ CellRangeAddress region23 = new CellRangeAddress(24,24,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region23);
|
|
|
+ CellRangeAddress region231 = new CellRangeAddress(24,24,3,4);
|
|
|
+ jyrSheet.addMergedRegion(region231);
|
|
|
+ CellRangeAddress region232 = new CellRangeAddress(24,24,5,6);
|
|
|
+ jyrSheet.addMergedRegion(region232);
|
|
|
+
|
|
|
+ XSSFRow bodyRow24 = jyrSheet.createRow(25);
|
|
|
+ cell = bodyRow24.createCell(0);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("储罐数量(个)");
|
|
|
+
|
|
|
+ cell = bodyRow24.createCell(1);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCgsl());
|
|
|
+
|
|
|
+ cell = bodyRow24.createCell(2);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+
|
|
|
+ cell = bodyRow24.createCell(3);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+ cell.setCellValue("储罐总容量(立方米)");
|
|
|
+
|
|
|
+ cell = bodyRow24.createCell(4);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ cell = bodyRow24.createCell(5);
|
|
|
+ cell.setCellStyle(bodyStyle1);
|
|
|
+ cell.setCellValue(voList.getCgzrl());
|
|
|
+
|
|
|
+ cell = bodyRow24.createCell(6);
|
|
|
+ cell.setCellStyle(bodyStyle);
|
|
|
+
|
|
|
+ CellRangeAddress region24 = new CellRangeAddress(25,25,1,2);
|
|
|
+ jyrSheet.addMergedRegion(region24);
|
|
|
+ CellRangeAddress region241 = new CellRangeAddress(25,25,3,4);
|
|
|
+ jyrSheet.addMergedRegion(region241);
|
|
|
+ CellRangeAddress region242 = new CellRangeAddress(25,25,5,6);
|
|
|
+ jyrSheet.addMergedRegion(region242);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public void exportJyr(List<GkjyrVo> voList, List<XkzxxVo> xkzxxVos, List<XkzfzVo> xkzfzVos, List<MtVo> mtVos, List<BwVo> bwVos, List<CgVo> cgVos, List<CkVo> ckVos, List<DcVo> dcVos, List<RyVo> ryVos, List<SssbVo> sssbVos, List<QytzVo> qytzVos, List<ZxjxVo> zxjxVos, ServletOutputStream outputStream, List<CodeEntity> listZycs, List<GqEntity> listgq, List<GkEntity> listgk) {
|
|
|
// public void exportJyr(List<GkjyrVo> voList, List<XkzfzVo> xkzfzVos, List<MtVo> mtVos, List<BwVo> bwVos, List<CgVo> cgVos, List<CkVo> ckVos, List<DcVo> dcVos, List<RyVo> ryVos, List<SssbVo> sssbVos, List<QytzVo> qytzVos, List<ZxjxVo> zxjxVos, ServletOutputStream outputStream, List<CodeEntity> listZycs, List<GqEntity> listgq, List<GkEntity> listgk) {
|
|
|
// 创建一个workbook 对应一个excel应用文件
|
|
|
XSSFWorkbook workBook = new XSSFWorkbook();
|
|
|
//经营人信息
|
|
|
- setSheet(voList, outputStream, workBook);
|
|
|
+ //setSheet(voList, outputStream, workBook);
|
|
|
+ setSheet1(voList.get(0), outputStream, workBook);
|
|
|
//许可证信息
|
|
|
xkzxxService.setXkzxxSheet(xkzxxVos, outputStream, workBook);
|
|
|
//许可证附证信息
|