|
|
|
@ -657,4 +657,17 @@ public class AppController extends BaseController
|
|
|
|
|
}
|
|
|
|
|
return AjaxResult.success("预约成功。");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询医生数量诊断
|
|
|
|
|
*
|
|
|
|
|
* @param doctorId 医生id
|
|
|
|
|
* @return {@code AjaxResult}
|
|
|
|
|
*/
|
|
|
|
|
@ApiOperation("查询医生数量诊断")
|
|
|
|
|
@Log(title = "APP查询医生数量诊断", businessType = BusinessType.OTHER)
|
|
|
|
|
@GetMapping("/doctor/recordCount/{id}")
|
|
|
|
|
public AjaxResult numberOfDiagnosis(@PathVariable("id") long doctorId){
|
|
|
|
|
return AjaxResult.success(tRecordService.queryDoctorNumberOfDiagnosis(doctorId));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|