Browse Source

导出党员认证失败改名

feature/dangjian
曲树通 6 years ago
parent
commit
14a8f4b155
  1. 2
      esua-epdc/epdc-module/epdc-user/epdc-user-server/src/main/java/com/elink/esua/epdc/controller/PartyAuthenticationFailedController.java

2
esua-epdc/epdc-module/epdc-user/epdc-user-server/src/main/java/com/elink/esua/epdc/controller/PartyAuthenticationFailedController.java

@ -92,7 +92,7 @@ public class PartyAuthenticationFailedController {
@DataFilter(tableAlias = "epaf", deptId = "grid_id", prefix = "AND", isPendingCreator = false) @DataFilter(tableAlias = "epaf", deptId = "grid_id", prefix = "AND", isPendingCreator = false)
public void export(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { public void export(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception {
List<PartyAuthenticationFailedDTO> list = partyAuthenticationFailedService.list(params); List<PartyAuthenticationFailedDTO> list = partyAuthenticationFailedService.list(params);
ExcelUtils.exportExcelToTarget(response, null, list, PartyAuthenticationFailedExcel.class); ExcelUtils.exportExcelToTarget(response, "认证失败党员", list, PartyAuthenticationFailedExcel.class);
} }
} }
Loading…
Cancel
Save