|
|
@ -269,4 +269,12 @@ public class AppController extends BaseController
|
|
|
|
return AjaxResult.success(tPatientService.selectTPatientById(getUserId()));
|
|
|
|
return AjaxResult.success(tPatientService.selectTPatientById(getUserId()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/patient/historyData")
|
|
|
|
|
|
|
|
@ApiOperation("查询患者历史数据图表")
|
|
|
|
|
|
|
|
public AjaxResult getHistoryRecordList(TRecordResultReq tRecordResultReq){
|
|
|
|
|
|
|
|
TRecord tRecord = new TRecord();
|
|
|
|
|
|
|
|
BeanUtils.copyProperties(tRecordResultReq, tRecord);
|
|
|
|
|
|
|
|
return tRecordService.getHistoryList(tRecord);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|