|
|
|
@ -35,6 +35,7 @@ import com.elink.esua.epdc.dto.form.KpiMetaDataOfEventsFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.result.KpiEventReportAmountResultDTO; |
|
|
|
import com.elink.esua.epdc.modules.events.excel.EpdcEventsExcel; |
|
|
|
import com.elink.esua.epdc.modules.events.excel.UnEventsExcel; |
|
|
|
import com.elink.esua.epdc.modules.events.excel.rejectEventsExcel; |
|
|
|
import com.elink.esua.epdc.modules.events.service.EpdcEventsService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
@ -214,7 +215,7 @@ public class EpdcEventsController { |
|
|
|
@GetMapping("rejectEventsExport") |
|
|
|
public void rejectEventsExport(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
|
List<EpdcRejectEventsDTO> list= epdcEventsService.rejectEventsExportList(params); |
|
|
|
ExcelUtils.exportExcelToTarget(response, "已驳回", list, UnEventsExcel.class); |
|
|
|
ExcelUtils.exportExcelToTarget(response, "已驳回", list, rejectEventsExcel.class); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|