| | |
| | | if (StringUtils.isNotBlank(mediResult)){ |
| | | terms.put("mediResult", mediResult); |
| | | } |
| | | |
| | | String peopleNum = request.getParameter("peopleNum"); |
| | | if (StringUtils.isNotBlank(peopleNum)){ |
| | | String[] split = peopleNum.split("-"); |
| | |
| | | Map<String, Object> terms = getParameterAll(); |
| | | Sort sort = Sort.by(Sort.Direction.DESC, "a.create_time"); |
| | | PageRequest pageRequest = PageRequest.of(0, 1000000, sort); |
| | | terms.put("report","report"); |
| | | Page<CasePageDTO> caseInfoPage = service.pageQueryAll(pageRequest, terms); |
| | | List<CaseInfoWeExcelDTO> excelList = new ArrayList<>(); |
| | | if(ObjectUtils.isNotEmpty(caseInfoPage.getContent())){ |
| | |
| | | @GetMapping("/statistics") |
| | | public Object statistics(@CurrentUser String userId) { |
| | | try { |
| | | // String userId = "2409240631181052"; |
| | | Map<String, Object> terms = getParameterAll(); |
| | | return ReturnSucUtils.getRepInfo( "处理成功", service.statistics(terms,userId)); |
| | | } catch (Exception e) { |