|
|
@ -54,7 +54,7 @@ public interface IPatientService { |
|
|
|
* @param userId userID |
|
|
|
* @return 返回训练记录的id |
|
|
|
*/ |
|
|
|
PatientVo.RecipeRecordId startDrill(PatientDto.StartDrill param, Long userId) throws JsonProcessingException, Exception; |
|
|
|
PatientVo.RecipeRecordId startDrill(PatientDto.StartDrill param, Long userId) throws Exception; |
|
|
|
|
|
|
|
/** |
|
|
|
* 结束训练 |
|
|
@ -68,7 +68,7 @@ public interface IPatientService { |
|
|
|
* @param param 记录id和结果 |
|
|
|
* @param userId userId |
|
|
|
*/ |
|
|
|
void actionFeedback(PatientDto.ActionFeedback param, Long userId) throws JsonProcessingException, Exception; |
|
|
|
void actionFeedback(PatientDto.ActionFeedback param, Long userId) throws Exception; |
|
|
|
|
|
|
|
/** |
|
|
|
* 竖屏时通过任务id查看患者信息 |
|
|
@ -84,4 +84,12 @@ public interface IPatientService { |
|
|
|
* @param userId userId |
|
|
|
*/ |
|
|
|
void completeRecovery(PatientDto.EndRecovery param, Long userId) throws Exception; |
|
|
|
|
|
|
|
/** |
|
|
|
* 通过身份证号模糊查询康复中心的患者信息 |
|
|
|
* @param param 身份证号 |
|
|
|
* @param userId 康复医生的userId |
|
|
|
* @return 返回患者列表 |
|
|
|
*/ |
|
|
|
List<PatientVo.Patient> vaguePatientByIdCard(PatientDto.VaguePatient param, Long userId); |
|
|
|
} |
|
|
|