1 year ago
parent
commit
0d47a82d9a

+ 1 - 1
platform-rest/src/main/java/com/platform/rest/controller/sb/SbInfoController.java

@@ -550,7 +550,7 @@ public class SbInfoController {
     @PreAuthorize("@pms.hasPermission('sb-infos-export')")
     public void exportSbDetail(HttpServletResponse response, SbInfoDTO sbInfoDTO) {
         List<SbInfoVO> list = sbInfoService.selectVOList(sbInfoDTO);
-        ExcelUtil.exportResponseDict(response, ExportSbInfoDetailVO.class, BeanConverterUtil.copyListProperties(list, ExportSbInfoVO.class), "设备基础信息");
+        ExcelUtil.exportResponseDict(response, ExportSbInfoDetailVO.class, BeanConverterUtil.copyListProperties(list, ExportSbInfoDetailVO.class), "设备基础信息");
     }