Commit 56700dd6 authored by liuxinben's avatar liuxinben

公安网反馈下载 修改联系方式位置

parent 5c321717
......@@ -70,23 +70,23 @@ public class ExportExcel {
cell = row.createCell(6); //设定值
cell.setCellValue("身份证号");
cell = row.createCell(7); //设定值
cell.setCellValue("联系方式");
cell = row.createCell(8); //设定值
cell.setCellValue("条形码号");
cell = row.createCell(9); //设定值
cell = row.createCell(8); //设定值
cell.setCellValue("签发机关");
cell = row.createCell(10); //设定值
cell = row.createCell(9); //设定值
cell.setCellValue("运单号");
cell = row.createCell(11); //设定值
cell = row.createCell(10); //设定值
cell.setCellValue("制证类型");
cell = row.createCell(12); //设定值
cell = row.createCell(11); //设定值
cell.setCellValue("原制证类型");
cell = row.createCell(13); //设定值
cell = row.createCell(12); //设定值
cell.setCellValue("复核日期");
cell = row.createCell(14); //设定值
cell = row.createCell(13); //设定值
cell.setCellValue("复核人");
cell = row.createCell(15); //设定值
cell = row.createCell(14); //设定值
cell.setCellValue("备注");
cell = row.createCell(15); //设定值
cell.setCellValue("联系方式");
for (int i =0;i<mapList.size();i++){
row = sheet.createRow(i + 1);
......@@ -105,23 +105,23 @@ public class ExportExcel {
cell = row.createCell(6); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("CARD_ID")+"")?"":mapList.get(i).get("CARD_ID")+"");
cell = row.createCell(7); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("APPLY_PHONE")+"")?"":mapList.get(i).get("APPLY_PHONE")+"");
cell = row.createCell(8); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("QR_CODE")+"")?"":mapList.get(i).get("QR_CODE")+"");
cell = row.createCell(9); //设定值
cell = row.createCell(8); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("SIGN_GOVT")+"")?"":mapList.get(i).get("SIGN_GOVT")+"");
cell = row.createCell(10); //设定值
cell = row.createCell(9); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("WAYBILL_NUMBER")+"")?"":mapList.get(i).get("WAYBILL_NUMBER")+"");
cell = row.createCell(11); //设定值
cell = row.createCell(10); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("CARD_TYPE_ID")+"")?"":mapList.get(i).get("CARD_TYPE_ID")+"");
cell = row.createCell(12); //设定值
cell = row.createCell(11); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("OLD_CARD_TYPE_ID")+"")?"":mapList.get(i).get("OLD_CARD_TYPE_ID")+"");
cell = row.createCell(13); //设定值
cell = row.createCell(12); //设定值
cell.setCellValue(mapList.get(i).get("CHECK_DATE")+"");
cell = row.createCell(14); //设定值
cell = row.createCell(13); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("CHECK_NAME")+"")?"":mapList.get(i).get("CHECK_NAME")+"");
cell = row.createCell(15); //设定值
cell = row.createCell(14); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("NOTE")+"")?"":mapList.get(i).get("NOTE")+"");
cell = row.createCell(15); //设定值
cell.setCellValue("null".equals(mapList.get(i).get("APPLY_PHONE")+"")?"":mapList.get(i).get("APPLY_PHONE")+"");
}
......
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