|
|
@ -110,5 +110,13 @@ public class StatisticalController { |
|
|
|
return JsonResponse.newInstance().ok(common); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "各地-时间窗", notes = "分项-时间窗患者") |
|
|
|
@RequestMapping(value = "/placeTimeWindows", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<StatisticalVo.Common> placeTimeWindows(@ApiParam @Validated @RequestBody QueryDto<StatisticalDto.TimeAndType> params) { |
|
|
|
log.info("分项-时间窗患者:{}", params); |
|
|
|
StatisticalVo.Common common = statisticalService.timeWindowsPatient(params.getParam(), params.getUserId()); |
|
|
|
log.info("分项-时间窗患者结果:{}", common); |
|
|
|
return JsonResponse.newInstance().ok(common); |
|
|
|
} |
|
|
|
} |
|
|
|