|
@ -1,7 +1,6 @@ |
|
|
package com.elink.esua.epdc.vaccine.epidemic.controller; |
|
|
package com.elink.esua.epdc.vaccine.epidemic.controller; |
|
|
|
|
|
|
|
|
import com.elink.esua.epdc.commons.tools.annotation.LogOperation; |
|
|
import com.elink.esua.epdc.commons.tools.annotation.LogOperation; |
|
|
|
|
|
|
|
|
import com.elink.esua.epdc.commons.tools.page.PageData; |
|
|
import com.elink.esua.epdc.commons.tools.page.PageData; |
|
|
import com.elink.esua.epdc.commons.tools.utils.ExcelUtils; |
|
|
import com.elink.esua.epdc.commons.tools.utils.ExcelUtils; |
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
@ -11,6 +10,7 @@ import com.elink.esua.epdc.commons.tools.validator.group.AddGroup; |
|
|
import com.elink.esua.epdc.commons.tools.validator.group.DefaultGroup; |
|
|
import com.elink.esua.epdc.commons.tools.validator.group.DefaultGroup; |
|
|
import com.elink.esua.epdc.commons.tools.validator.group.UpdateGroup; |
|
|
import com.elink.esua.epdc.commons.tools.validator.group.UpdateGroup; |
|
|
import com.elink.esua.epdc.vaccine.epidemic.dto.EpidemicUserErrorDTO; |
|
|
import com.elink.esua.epdc.vaccine.epidemic.dto.EpidemicUserErrorDTO; |
|
|
|
|
|
import com.elink.esua.epdc.vaccine.epidemic.excel.EpidemicUserError4RoomExcel; |
|
|
import com.elink.esua.epdc.vaccine.epidemic.excel.EpidemicUserErrorExcel; |
|
|
import com.elink.esua.epdc.vaccine.epidemic.excel.EpidemicUserErrorExcel; |
|
|
import com.elink.esua.epdc.vaccine.epidemic.service.EpidemicUserErrorService; |
|
|
import com.elink.esua.epdc.vaccine.epidemic.service.EpidemicUserErrorService; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
@ -93,7 +93,7 @@ public class EpidemicUserErrorController { |
|
|
public void export4Room(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
public void export4Room(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { |
|
|
List<EpidemicUserErrorDTO> list = epidemicUserErrorService.getErrorInfoByMax(); |
|
|
List<EpidemicUserErrorDTO> list = epidemicUserErrorService.getErrorInfoByMax(); |
|
|
|
|
|
|
|
|
ExcelUtils.exportExcelToTarget(response, null, list, EpidemicUserErrorExcel.class); |
|
|
ExcelUtils.exportExcelToTarget(response, null, list, EpidemicUserError4RoomExcel.class); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|