mirror of
https://github.com/suhf/No1WMS.git
synced 2026-02-05 04:03:45 +09:00
#수정
stock/create.jsp stock/list.jsp stock/read.jsp stock/update.jsp WarehouseController.java WarehouseMapper.xml
This commit is contained in:
@@ -231,9 +231,10 @@ public class ExcelDownlodeUtils {
|
||||
//
|
||||
for (int i = 0; i < listdto.size(); i++) {
|
||||
row = sheet.createRow(rowNum++);
|
||||
Map<String, Object> dto = listdto.get(i);
|
||||
Map<String, Object> dto = listdto.get(i); // 이 부분을 수정함
|
||||
|
||||
cell = row.createCell(0);
|
||||
cell.setCellValue((String) dto.get("productName"));
|
||||
cell.setCellValue((String) dto.get("productName")); // 키 값을 사용하여 값을 가져옴
|
||||
cell = row.createCell(1);
|
||||
cell.setCellValue((String) dto.get("cls_nm_4"));
|
||||
cell = row.createCell(2);
|
||||
|
||||
Reference in New Issue
Block a user