|
|
@ -72,4 +72,15 @@ public class StatisticalController { |
|
|
|
// log.info("分项-溶栓患者/机械再通/脑出血:{}", );
|
|
|
|
return JsonResponse.newInstance().ok(); |
|
|
|
} |
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "分项-时间窗患者", notes = "分项-时间窗患者") |
|
|
|
@RequestMapping(value = "/timeWindowsPatient", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<StatisticalVo.Common> timeWindowsPatient(@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); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|