App端查询患者历史数据图表

master
gongzhenkun 2 years ago
parent 59348b7162
commit 1d81f29dc0

@ -269,4 +269,12 @@ public class AppController extends BaseController
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);
}
}

Loading…
Cancel
Save