|
|
@ -44,7 +44,7 @@ public class StatisticalController { |
|
|
|
|
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "跑道图", notes = "跑道图") |
|
|
|
@ApiOperation(value = "DNT", notes = "DNT") |
|
|
|
@RequestMapping(value = "/dnt", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<StatisticalVo.Common> dnt(@ApiParam @Validated @RequestBody QueryDto<StatisticalDto.Time> params) { |
|
|
|
log.info("dnt:{}", params); |
|
|
@ -53,4 +53,23 @@ public class StatisticalController { |
|
|
|
return JsonResponse.newInstance().ok(common); |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "手术方式/来院统计", notes = "zy") |
|
|
|
@RequestMapping(value = "/toCourtStatistics", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<StatisticalVo.Common> toCourtStatistics(@ApiParam @Validated @RequestBody QueryDto<StatisticalDto.CourtStatistics> params) { |
|
|
|
log.info("手术方式/来院统计:{}", params); |
|
|
|
StatisticalVo.Common common = statisticalService.toCourtStatistics(params.getParam(), params.getUserId()); |
|
|
|
log.info("手术方式/来院统计结果:{}", common); |
|
|
|
return JsonResponse.newInstance().ok(common); |
|
|
|
} |
|
|
|
|
|
|
|
@MustLogin |
|
|
|
@ApiOperation(value = "分项-溶栓患者/机械再通/脑出血", notes = "zy") |
|
|
|
@RequestMapping(value = "/countSpecifyAnswer", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
|
public JsonResponse<StatisticalVo.Common> countSpecifyAnswer(@ApiParam @Validated @RequestBody QueryDto<StatisticalDto.CourtStatistics> params) { |
|
|
|
log.info("分项-溶栓患者/机械再通/脑出血:{}", params); |
|
|
|
// StatisticalVo.Common common = statisticalService.toCourtStatistics(params.getParam(), params.getUserId());
|
|
|
|
// log.info("分项-溶栓患者/机械再通/脑出血:{}", );
|
|
|
|
return JsonResponse.newInstance().ok(); |
|
|
|
} |
|
|
|
} |
|
|
|