| | |
| | | return success(patientStatisticVO); |
| | | } |
| | | |
| | | @GetMapping("/get-dev-ready-statistic") |
| | | @Operation(summary = "设备领用统计") |
| | | @Parameter(name = "roomId", description = "诊室编号", required = true, example = "116") |
| | | @Parameter(name = "bedNo", description = "工位编号", required = true, example = "B2") |
| | | @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") |
| | | public CommonResult<PatientStatisticVO> getDevReadyStatistic( |
| | | @RequestParam("roomId") Long roomId, |
| | | @RequestParam("bedNo") String bedNo) |
| | | { |
| | | PatientStatisticVO patientStatisticVO = queueService.getBedDevReadyStatistic(roomId, bedNo); |
| | | return success(patientStatisticVO); |
| | | } |
| | | |
| | | |
| | | @GetMapping("/get-dev-install-statistic") |
| | | @Operation(summary = "设备装机统计") |
| | | @Parameter(name = "roomId", description = "诊室编号", required = true, example = "116") |
| | | @Parameter(name = "bedNo", description = "工位编号", required = true, example = "B2") |
| | | @PreAuthorize("@ss.hasPermission('ecg:doctor:task')") |
| | | public CommonResult<PatientStatisticVO> getDevInstallStatistic( |
| | | @RequestParam("roomId") Long roomId, |
| | | @RequestParam("bedNo") String bedNo) |
| | | { |
| | | PatientStatisticVO patientStatisticVO = queueService.getBedDevInstallStatistic(roomId, bedNo); |
| | | return success(patientStatisticVO); |
| | | } |
| | | |
| | | @GetMapping("/recall-patient") |
| | | @Operation(summary = "过号病人召回") |
| | | @Parameter(name = "roomId", description = "诊室编号", required = true, example = "116") |