| | |
| | | //创建对象,并封装数据 |
| | | HealthcodeVO healthcodeVO = getHealthcodeVo(map); |
| | | //查询数据并返回数据 |
| | | List<HealthcodeExcel> excelList = ihealthcodeService.getHealthcodePie(healthcodeVO); |
| | | return excelList; |
| | | return ihealthcodeService.getHealthcodePie(healthcodeVO); |
| | | } |
| | | |
| | | /** |
| | |
| | | //创建对象,并封装数据 |
| | | AnimalHeatVo animalHeatVo = getAnimalHeatVo(map); |
| | | //查询数据并返回数据 |
| | | List<AnimalHeatExcel> excelList = animalHeatService.exportAnimalHeat(animalHeatVo); |
| | | return excelList; |
| | | return animalHeatService.exportAnimalHeat(animalHeatVo); |
| | | } |
| | | |
| | | /** |
| | |
| | | //创建对象,并封装数据 |
| | | AnimalHeatVo animalHeatVo = getAnimalHeatVo(map); |
| | | //查询数据并返回数据 |
| | | List<ReportReturnData> reportReturnData = animalHeatService.getAnimalHeatPie(animalHeatVo); |
| | | System.out.println("reportReturnData = " + reportReturnData); |
| | | return reportReturnData; |
| | | return animalHeatService.getAnimalHeatPie(animalHeatVo); |
| | | } |
| | | |
| | | /** |
| | |
| | | //创建对象,并封装数据 |
| | | ConditionVo conditionVo = getConditionVo(map); |
| | | //查询数据并返回数据 |
| | | List<ParcelExcel> excelList = parcelService.exportParcel(conditionVo); |
| | | System.out.println("conditionVo = " + conditionVo); |
| | | System.out.println("excelList = " + excelList); |
| | | return excelList; |
| | | List<ParcelExcel> parcelExcels = parcelService.exportParcel(conditionVo); |
| | | return parcelExcels; |
| | | } |
| | | |
| | | /** |
| | | * 获取包裹数据集合 |
| | | * @param body map集合数据 |
| | | * @return |
| | | */ |
| | | @PostMapping("getParcelPie") |
| | | public List<ReportReturnData> getParcelPie(@RequestBody String body){ |
| | | Map<String,Object> map = JSONObject.parseObject(body); |
| | | //创建对象,并封装数据 |
| | | ConditionVo conditionVo = getConditionVo(map); |
| | | //查询数据并返回数据 |
| | | return null; |
| | | } |
| | | |
| | | /** |