App端查询患者历史数据图表入参调整

master
gongzhenkun 2 years ago
parent 1d81f29dc0
commit ac7f8ca0b7

@ -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);
} }

Loading…
Cancel
Save