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