修改接口说明

master
gongzhenkun 2 years ago
parent 19fe223844
commit d7452cc3bc

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

Loading…
Cancel
Save