Browse Source

冗余

feature/user_house_import
zhangyuan 3 years ago
parent
commit
6653f77d86
  1. 12
      epdc-cloud-vim-yushan/src/main/java/com/elink/esua/epdc/vaccine/epidemic/controller/EpidemicUserInfoController.java

12
epdc-cloud-vim-yushan/src/main/java/com/elink/esua/epdc/vaccine/epidemic/controller/EpidemicUserInfoController.java

@ -84,8 +84,7 @@ public class EpidemicUserInfoController {
public Result delete(@RequestBody Long[] ids) {
//效验数据
AssertUtils.isArrayEmpty(ids, "id");
// epidemicUserInfoService.delete(ids);
// return new Result();
return epidemicUserInfoService.deleteUserById(ids);
}
@ -96,15 +95,6 @@ public class EpidemicUserInfoController {
exportParams.setHeight((short) (2 * 256));
ExcelUtils.exportBigExcel(StringUtils.EMPTY, params, exportServer, response, exportParams, EpidecmicUserNewExcel.class);
}
/*
@GetMapping("export")
@LogOperation("导出")
public void export(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception {
List<EpidemicRecordListDTO> list = epidemicUserInfoService.getList(params);
ExcelUtils.exportExcelToTarget(response, null, list, EpidecmicUserNewExcel.class);
}
*/
/**
* @return io.pingyin.common.utils.Result<io.pingyin.common.page.PageData < io.pingyin.modules.epidemic.dto.result.EpidemicPageResultDTO>>

Loading…
Cancel
Save