|
@ -37,15 +37,15 @@ public class ConferenceRecordsController { |
|
|
private IConferenceService conferenceService; |
|
|
private IConferenceService conferenceService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@MustLogin |
|
|
// @MustLogin
|
|
|
@ApiOperation(value = "查询会议记录", notes = "w:根据会议记录查询条件查询会议记录") |
|
|
// @ApiOperation(value = "查询会议记录", notes = "w:根据会议记录查询条件查询会议记录")
|
|
|
@RequestMapping(value = "/selConRec", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
// @RequestMapping(value = "/selConRec", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"})
|
|
|
public JsonResponse<PageInfo<ConRecVo.SelConRecVo>> selConRec(@ApiParam @Validated @RequestBody QueryDto<ConRecDto.SelConRecDto> params) { |
|
|
// public JsonResponse<PageInfo<ConRecVo.SelConRecVo>> selConRec(@ApiParam @Validated @RequestBody QueryDto<ConRecDto.SelConRecDto> params) {
|
|
|
log.info("查询会议记录相关信息:{}",params); |
|
|
// log.info("查询会议记录相关信息:{}",params);
|
|
|
PageInfo<ConRecVo.SelConRecVo> selConRecVoPageInfo= patientService.selConRec(params.getParam(),params.getUserId()); |
|
|
// PageInfo<ConRecVo.SelConRecVo> selConRecVoPageInfo= patientService.selConRec(params.getParam(),params.getUserId());
|
|
|
log.info("查询会议记录基本信息成功"); |
|
|
// log.info("查询会议记录基本信息成功");
|
|
|
return JsonResponse.newInstance().ok(selConRecVoPageInfo); |
|
|
// return JsonResponse.newInstance().ok(selConRecVoPageInfo);
|
|
|
} |
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@MustLogin |
|
|
@MustLogin |
|
|