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