| | |
| | | sheet.setColumnWidth(10, (int)((10 + 0.72) * 256)); |
| | | sheet.setColumnWidth(11, (int)((25 + 0.72) * 256)); |
| | | sheet.setColumnWidth(12, (int)((25 + 0.72) * 256)); |
| | | sheet.setColumnWidth(13, (int)((25 + 0.72) * 256)); |
| | | |
| | | HSSFRow rows=sheet.createRow(0);//第二行 |
| | | //创建单元格并设置单元格内容 |
| | |
| | | rows.createCell(10).setCellValue("目的地类型"); |
| | | rows.createCell(11).setCellValue("目的地仓位"); |
| | | rows.createCell(12).setCellValue("用户ID"); |
| | | rows.createCell(13).setCellValue("修改时间"); |
| | | |
| | | List<WaitPakOutLogBean> list=waitPakOutLogDao.getWaitPakOutLogAll(condition); |
| | | for(int i=0;i<list.size();i++){ |
| | |
| | | row.createCell(10).setCellValue(list.get(i).getNltyp()); |
| | | row.createCell(11).setCellValue(list.get(i).getNlpla()); |
| | | row.createCell(12).setCellValue(list.get(i).getBname()); |
| | | row.createCell(13).setCellValue(list.get(i).getModi_time()); |
| | | } |
| | | // //输出Excel文件 |
| | | // try { |