| | |
| | | terms.put("createStart", fileStart+ " 00:00:00"); |
| | | terms.put("createEnd", fileEnd+ " 23:59:59"); |
| | | } |
| | | String areaType = request.getParameter("areaType"); |
| | | if (StringUtils.isNotBlank(areaType)){ |
| | | terms.put("areaType", areaType); |
| | | String queRoad = request.getParameter("queRoad"); |
| | | if (StringUtils.isNotBlank(queRoad)){ |
| | | terms.put("areaType", "2"); |
| | | } |
| | | |
| | | // 实际调解组织编号 |
| | | String mediateUnitId = request.getParameter("mediateUnitId"); |
| | | if (StringUtils.isNotBlank(mediateUnitId)){ |
| | |
| | | } |
| | | |
| | | /** |
| | | * 综合查询 |
| | | * 解纷态势 |
| | | * @url {ctx}/api/web/caseInfo/statistics |
| | | * @return Object |
| | | * @CurrentUser String userId |
| | | */ |
| | | @GetMapping("/statistics") |
| | | public Object statistics() { |
| | | public Object statistics(@CurrentUser String userId) { |
| | | try { |
| | | Map<String, Object> terms = getParameterAll(); |
| | | return ReturnSucUtils.getRepInfo( "处理成功", service.statistics(terms)); |
| | | return ReturnSucUtils.getRepInfo( "处理成功", service.statistics(terms,userId)); |
| | | } catch (Exception e) { |
| | | log.error("Controller接口[CaseInfoWebController.statistics]请求异常:"+e, e); |
| | | return ReturnFailUtils.getRepInfo(); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 解纷态势-纠纷类型 |
| | | * @url {ctx}/api/web/caseInfo/statisticsCaseType |
| | | * @return Object |
| | | * @CurrentUser String userId |
| | | */ |
| | | @GetMapping("/statisticsCaseType") |
| | | public Object statisticsCaseType(@CurrentUser String userId) { |
| | | try { |
| | | Map<String, Object> terms = getParameterAll(); |
| | | return ReturnSucUtils.getRepInfo( "处理成功", service.statisticsCaseType(terms,userId)); |
| | | } catch (Exception e) { |
| | | log.error("Controller接口[CaseInfoWebController.statistics]请求异常:"+e, e); |
| | | return ReturnFailUtils.getRepInfo(); |